Skip to content

Instantly share code, notes, and snippets.

@shohag-cse-knu
Last active December 17, 2024 05:04
Show Gist options
  • Save shohag-cse-knu/920e91323aa16a8dbd8ef7a83fb623e3 to your computer and use it in GitHub Desktop.
Save shohag-cse-knu/920e91323aa16a8dbd8ef7a83fb623e3 to your computer and use it in GitHub Desktop.
Backspace denied in webpages without form fields
//Backspace won't work in webpage without form fields
$(document).on("keydown", function (event) {
if (event.keyCode === 8 && !$(event.target).is("input, textarea")) {
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment