Advertisement
edelgado

jquery_pressing_escape

May 6th, 2014
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).keyup(function(e) {
  2.     if (e.keyCode == 27) { alert('close'); }   // esc
  3. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement