Friday, 9 September 2016

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

    });

});

No comments:

Post a Comment