Jun
10
2013

Disable right click

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

Leave a comment