clipped from:
www.queness.com
Disable right click
Some of us might want to disable right click, or want to create our own context menu for the website, this is how we can detect right click:
view plain
copy to clipboard
print
?
$(document).bind(
"contextmenu"
,
function
(e){
//you can enter your code here, e.g a menu list
//cancel the default context menu
return
false
;
});