1
Reply

How to Disable Right Click using JQuery?

Pankaj Pathak

Pankaj Pathak

11y
1k
0
Reply

    With the given code you can simpply disable the Right Click on hole of the page. However you can also disable right click on particular element.$(document).bind('contextmenu', function (e) {e.preventDefault();alert('Right Click is not allowed'); });