Skip to content

Instantly share code, notes, and snippets.

@tschak909
Created September 5, 2019 18:01
Show Gist options
  • Save tschak909/945654da124c7847f4a40ba61b230a83 to your computer and use it in GitHub Desktop.
Save tschak909/945654da124c7847f4a40ba61b230a83 to your computer and use it in GitHub Desktop.
code snippet to prevent default events.
$(window).keydown(function(event) {
if (event.ctrlKey && event.keyCode == 0x44) { // Ctrl+D
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment