Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bepatrickdavid/7cdb75833bca0e7b162b4598b153ccde to your computer and use it in GitHub Desktop.
Save bepatrickdavid/7cdb75833bca0e7b162b4598b153ccde to your computer and use it in GitHub Desktop.
jQuery: disable enter button
$(function() {
$("#findstore").bind("keydown", function(e) {
if (e.keyCode == 13) {
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment