Advertisement
jiue123

onclick Enter on keyboard

Nov 21st, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#keyValue").keyup(function(e){
  2.             if(e.keyCode == 13){ //keyCode 13 == Enter
  3.                 $("#bottomSearch").click();
  4.             }
  5.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement