Monday, June 16, 2008

Disable right click menu

To disable right click menu, can use the following script

document.oncontextmenu = function() {
return false;
}

No comments: