439258-1.html (303B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script type="text/javascript"> 5 6 function boom() 7 { 8 document.getElementById("div").focus(); 9 document.execCommand("bold", false, null); 10 } 11 12 </script> 13 </head> 14 15 <body onload="boom();"> 16 17 <div id="div" style="position: absolute" contenteditable="true"></div> 18 19 </body> 20 </html>