Disabling Right Click (context menu) with jQuery

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;
});
});



Leave a Reply

You must be logged in to post a comment.