Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  5.     <style>p {font-size:150px;text-align:center;}</style>
  6. </head>
  7.  
  8. <body>
  9.  
  10.     <script>
  11.         (function($){
  12.  
  13.             $('body').on( 'keyup', function(e){
  14.                 $(this).html('<p>' + e.key + '</p>');
  15.                 $(document).prop( 'title', e.key );
  16.             });
  17.         })(jQuery)
  18.     </script>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement