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:
  1. $(document).bind("contextmenu",function(e){  
  2.     //you can enter your code here, e.g a menu list  
  3.           
  4.     //cancel the default context menu  
  5.     return false;  
  6. });