Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fenil265/d64fbea4229a593db01bb34ffb2461d2 to your computer and use it in GitHub Desktop.
Save Fenil265/d64fbea4229a593db01bb34ffb2461d2 to your computer and use it in GitHub Desktop.
document.getElementById('foo').onkeypress = function(e){
if (!e) e = window.event;
var keyCode = e.keyCode || e.which;
if (keyCode == '13'){
// Enter pressed
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment