here2share

HTML textarea2div

Dec 12th, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.33 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <textarea onkeyup="textbox(this)">
  4. The Quick Brown Fox Jumped Over The Lazy Brown Dog
  5. </textarea>
  6. <div id="example">Example Text</div>
  7. </head>
  8. <body>
  9.  
  10. <script src="http://code.jquery.com/jquery-1.5.js"></script>
  11. <script>
  12. function textbox(val) {
  13. $('#example').text(val.value);
  14. };
  15. </script>
  16. </html>
Add Comment
Please, Sign In to add comment