Guest User

Untitled

a guest
Jan 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <button>
  6. Fake button
  7. </button>
  8. <div style="z-index:100;position:absolute;top:0;left:0;border:1px solid black;background-color:green;height:50px;padding:10px">
  9. Press enter to see an alert (unless you're using IE!)
  10. </div>
  11. </body>
  12. </html>
  13.  
  14. $(document).on('keypress', function(e){
  15. alert(e.which)
  16. })
Add Comment
Please, Sign In to add comment