Advertisement
firoze

close item press esc button

Jun 7th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="en-US">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title></title>
  6. <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  7. </head>
  8. <body>
  9.     <div id="modal_bid">
  10.         Hello world!
  11.         <p id="close">close</p>
  12.     </div>
  13.  
  14. <script>
  15. jQuery(document).bind('keyup',function(evt) {
  16.     if (evt.keyCode == 27) {
  17.       $('#modal_bid').css({"display":"none"}); 
  18.       alert('This text after press ESC button');
  19.     }
  20. });
  21. </script>
  22.    
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement