Skip to content

Instantly share code, notes, and snippets.

@diverted247
Created January 9, 2014 19:43
Show Gist options
  • Select an option

  • Save diverted247/8340620 to your computer and use it in GitHub Desktop.

Select an option

Save diverted247/8340620 to your computer and use it in GitHub Desktop.
Backspace key from triggering back navigation
document.addEventListener( 'keydown' , function( event ){
if( event.keyCode == 8 ){
if( document.activeElement == null || document.activeElement === document.body ){
event.preventDefault();
}
}
} , false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment