639736-1.xhtml (535B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 function onLoad() { 5 // For emulating the traditional behavior, collapse Selection to end of the 6 // <td> which is the deepest last child of the <body>. 7 getSelection().collapse( 8 document.querySelector("td"), 9 document.querySelector("td").childNodes.length 10 ); 11 try { 12 document.execCommand("removeformat"); 13 } catch(e) {} 14 document.adoptNode(document.documentElement); 15 } 16 </script> 17 </head> 18 <body onload="onLoad();"><td contenteditable="true"/></body> 19 </html>