HTML CSS JavaScript jQuery AJAX ASP PHP SQL tutorials, examples for web building ,author kapil kumar: how to Disable right-click

Saturday 10 May 2014

how to Disable right-click



Disable right-click contextual menu

There’s many Javascript snippets available to disable right-click contextual menu, but JQuery makes things a lot easier:
$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});

No comments:

Post a Comment