Use below JQuery code to disable right click on web page. This will work well on all browser (IE, Firefox, Google
chrome).
// To prevent right click
$(document).bind('contextmenu', function (e) {
e.preventDefault();
return false;
});
// To prevent right click
$(document).bind('contextmenu', function (e) {
e.preventDefault();
return false;
});
No comments:
Post a Comment