Skip to content

Instantly share code, notes, and snippets.

@jasonyost
Created June 30, 2014 15:27
Show Gist options
  • Save jasonyost/a0e213eea93f90c74292 to your computer and use it in GitHub Desktop.
Save jasonyost/a0e213eea93f90c74292 to your computer and use it in GitHub Desktop.
Prevent tab key press in JS
$('.entry-field').keydown(function(event){
if (event.keyCode == 9) {
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment