Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
  5. </head>
  6. <body>
  7.  
  8. <div class='printchatbox'>CHANGE ME</div>
  9. <input type='text' name='fname' class='chatinput'>
  10. </body>
  11. <script type="script/javascript">
  12. $('.chatinput').keyup(function(event) {
  13. newText = event.target.value;
  14. $('.printchatbox').text(newText);
  15. });
  16. </script>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement