41464-1a.html (350B)
1 <!DOCTYPE html> 2 <title>Dynamic manipulation of textarea.wrap</title> 3 <link rel=help href=http://www.whatwg.org/html5/#dom-textarea-wrap> 4 <link rel=author title=Ms2ger href=mailto:ms2ger@gmail.com> 5 <textarea wrap=off cols=20>01234567890 01234567890 01234567890</textarea> 6 <script> 7 document.getElementsByTagName("textarea")[0].wrap = "soft"; 8 </script>