/ Published in: jQuery
Disable right-click contextual menu using jQuery
Expand |
Embed | Plain Text
$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); });
You need to login to post a comment.
math89 on 12/18/09
2 people have marked this snippet as a favorite
Disable right-click contextual menu using jQuery
$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); });
You need to login to post a comment.