Friday, 12 September 2014

Disable right click option using jquery

$(function(){
        $(this).bind("contextmenu", function(e){
        e.preventDefault();
          alert("right click is disabled"); //not recommended to give alert message
    });

});

No comments:

Post a Comment

Extracting Nupkg files using command line

Rename it to zip first then extract files as below 1.     Rename-Item -Path A_Package.nupkg -NewName A_Package.zip 2.     Make sure to repla...