You can find many java script code snippets to disable right click. But
jQuery makes our life easy. Below jQuery code disables the right click
of mouse.
We just need to bind the contextmenu event with the document element.
Method 2 (Send from one of the reader):
1 | $(document).ready( function (){ |
2 | $(document).bind( "contextmenu" , function (e){ |
3 | return false ; |
4 | }); |
5 | }); |
Method 2 (Send from one of the reader):
No comments:
Post a Comment