Archive for the ‘Jquery’ Category

Disabling Right Click (context menu) with jQuery

Saturday, November 14th, 2009

There are a lot of examples of javascript code snippets to disable right click on web pages. However, jQuery makes it a lot easier:

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