Skip to content

Instantly share code, notes, and snippets.

@seamusjr
Created October 10, 2011 17:52
Show Gist options
  • Save seamusjr/1275958 to your computer and use it in GitHub Desktop.
Save seamusjr/1275958 to your computer and use it in GitHub Desktop.
$(document).keydown(function(e) {
if(typeof e != 'undefined'){
if(e.altKey && e.keyCode == 115){
e.keyCode = 0;
alert("Alt + F4");
return false;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment