Skip to content

Instantly share code, notes, and snippets.

@i2bskn
Created August 13, 2013 09:31
Show Gist options
  • Save i2bskn/6219448 to your computer and use it in GitHub Desktop.
Save i2bskn/6219448 to your computer and use it in GitHub Desktop.
Disable contextmenu and mousedown.
(function($){
$.fn.disable = function(){
$(this).on("contextmenu mousedown", function(){
return false;
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment