- $(document).ready(function(){
- $(document).bind("contextmenu",function(e){
- return false;
- });
- });
- 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 tofalse
the default action is prevented.
No comments:
Post a Comment