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;
});
});