How to Disable right click using jQuery

You can find many java script code snippets to disable right click. But jQuery makes our life easy. Below jQuery code disables the right click of mouse.

$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});
See live Demo and Code

We just need to bind the contextmenu event with the document element.

Method 2 (Send from one of the reader):

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

Feel free to contact me for any help related to jQuery. I will gladly help you.



Responsive Menu
Add more content here...