Pages

Disable right click menu - jQuery

Some web designers disable contextual right-click menu on their webpages. One common reason of doing that is to fight off picture stealer. Notwithstanding the reason, you can bind the right-click menu utilizing this basic piece.
$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});