latest Post

How to Disable right click using jQuery

How to Disable right click using jQuery

$(document).ready(function(){

    $(document).bind("contextmenu",function(e){

        return false;

    });

});

Method 2 (Send from one of the reader):

$(document).ready(function(){

    $(document).bind("contextmenu",function(e){

        e.preventDefault();

    });

});

About Mallikarjun A

Mallikarjun A
Recommended Posts × +

0 comments:

Post a Comment