Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script>
  4. <title>testing</title>
  5.  
  6. <script type="text/javascript">
  7. $(document).ready(function () {
  8. $(document).on("keydown keypress", function (e) {
  9. $('input').focus();
  10. if (console && console.log) {
  11. console.log(e.type + ": code = " + e.keyCode + " and value = " + e.which + ". charCode = " + e.charCode);
  12. }
  13. });
  14. });
  15. </script>
  16. </head>
  17.  
  18. <body>
  19. <p>Click here</p>
  20. <input type="text" />
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement