Friday, March 19, 2010

[jQuery] disable rightclick

  1. $(document).ready(function(){  
  2.     $(document).bind("contextmenu",function(e){  
  3.         return false;  
  4.     });  
  5. }); 
  • W3C has added the method preventDefault() to the event. If you call it the default action is prevented.
  • Microsoft has added the property returnValue to the event. If you set it to false the default action is prevented.

No comments: