Guest User

Untitled

a guest
Oct 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. $(document).keypress(function(e) {
  2. var keycode = (e.keyCode ? e.keyCode : e.which);
  3. if (!(keycode == '13')) {
  4. //do somthing
  5. }
  6. });
Add Comment
Please, Sign In to add comment