If you want to disabled the right click on entire website or particular div.First you need to load the Jquery file
Disable the right click on entire web page
Disable the right click on perticular division (div tag)
Html code
Disable the right click on entire web page
1 2 3 4 5 6 7 8 | < script type = "text/javascript" > $(function () { $(document).bind('contextmenu', function (e) { e.preventDefault(); }); }); </ script > |
1 2 3 4 5 6 7 8 9 | < script type = "text/javascript" > $(function () { $('.Container').bind('contextmenu',function(e){ e.preventDefault(); alert('Right Click is not allowed on div'); }); }); </ script > |
1 2 3 | < div class = "Container" > div content </ div > |
* If you like this post please don’t forget to subscribe Techies Badi - programming blog for more useful stuff