Pages

Showing posts with label disable right click. Show all posts
Showing posts with label disable right click. Show all posts

Sunday, November 6, 2011

How to disable right click contextual menu

Here's the jQuery snippet for it......

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


That's it!!!
Give it a try by right clicking on this page.....


If you have any questions, comments, or suggestions, please let me know in the comments section below!