Skip to content

Instantly share code, notes, and snippets.

@zmiftah
Created September 2, 2012 11:27
Show Gist options
  • Save zmiftah/3597276 to your computer and use it in GitHub Desktop.
Save zmiftah/3597276 to your computer and use it in GitHub Desktop.
jQuery: Disable ContextMenu
$(document).ready(function()
{
$(document).bind("contextmenu",function(e){
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment