How to Disable Right Click on HTML page using jQuery ?

By | March 8, 2011

Hi,

In some special cases you may need to disable the Right Click option on HTML page you are using.
An easy way to do it using jQuery is follows. Use the following code in the HTML page where you want to disable Right Click.

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

🙂

Leave a Reply

Your email address will not be published. Required fields are marked *