Skip to content

Instantly share code, notes, and snippets.

@springcome
Created October 15, 2013 01:48
Show Gist options
  • Save springcome/6985362 to your computer and use it in GitHub Desktop.
Save springcome/6985362 to your computer and use it in GitHub Desktop.
enter key event
<script type="text/javascript">
function enterEvent(e) {
if (13 == e.keyCode) {
return true;
} else {
return false;
}
}
</script>
<input type="text" name="" id="" onKeypress="enterEvent(event);" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment