Code Snippet > JS - jQuery

Cancel Right Click Context Menu with jQuery

Some of you might want to disable the mouse right click of your website, this is how you do it with jQuery.

JS - jQuery

$(document).ready(function(){
	$(document).bind("contextmenu",function(e){
		return false;
	});
});

Source: http://yensdesign.com/2008/12/fast-tip-how-cancel-right-click-context-menu-jquery/



Show Some Love, Spread This Post!

0 comments

Leave a comment

Have something to say? Drop a comment! No HTML tags are allowed in the comment textfield.

Advertisement