Back jQuery

Cancel Right Click Context Menu with jQuery

WRITTEN BY ON 09 Jan 2011
10,754 VIEWS • SHARES
0 comments

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;
	});
});
Join the discussion

Comments will be moderated and rel="nofollow" will be added to all links. You can wrap your coding with [code][/code] to make use of built-in syntax highlighter.