Skip to content

Instantly share code, notes, and snippets.

@yesil
Created December 2, 2011 13:31
Show Gist options
  • Save yesil/1423251 to your computer and use it in GitHub Desktop.
Save yesil/1423251 to your computer and use it in GitHub Desktop.
kill backspace in browsers(ff 3.6 ok, IE 8 ok)
$(document).keydown(function(e){
return (e.which != 8 || e.target.nodeName =='TEXTAREA' || e.target.nodeName == 'INPUT' && e.target.attributes.type.value == 'text');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment