Fast Tip: How to cancel right click context menu in jQuery
Hi there guys! While I was working in the next tutorial I have been encountered with a problem: How can I block / cancel the context menu when I do right click on the screen?
There are a lot of examples and scripts in javascript, but one more time jQuery makes it easy! Here you have the code:
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
This code works in: Firefox, Internet Explorer 6 & 7, Opera, Safari & Chrome.
One more thing guys… the next tutorial will be released on next Monday as a part of serie of tutorials that will be very very BIG, interesting and useful
See you soon!
Enjoy this post?
Your vote will help us to grow this website and write more entries like this one :)



[...] Source: Fast Tip: How to cancel right click context menu in jQuery [...]
[...] Источник: Fast Tip: How to cancel right click context menu in jQuery [...]