How to disable the mouse right-click menu

by Edward 23 September 2009 05:35

There are numerous javascript functions that allows you to disable the mouse right click functionality. However JQuery allows you to make it easier.

Here is an JQuery code example:

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

Tags: ,

AJAX/JQuery

Comments are closed

About DasCode.Net

I'm a ASP.NET web developer and code enthusiast. Blogging about everything .Net related.

Code... that's .net

Month List