Skip to content

Instantly share code, notes, and snippets.

@NightOwlPrgmr
Last active August 29, 2015 14:26
Show Gist options
  • Save NightOwlPrgmr/76cd2c1dbd0336ec3dc3 to your computer and use it in GitHub Desktop.
Save NightOwlPrgmr/76cd2c1dbd0336ec3dc3 to your computer and use it in GitHub Desktop.
Prevent Page Back: Delete Key
$(document).keydown(function(e) {
if (e.keyCode === 8) {
var element = e.target.nodeName.toLowerCase();
if ((element != 'input' && element != 'textarea') || $(e.target).attr("readonly")) {
return false;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment