Search for the Article

Disable Right Click on Web Page | Prevent Right Clciking


Prevent Right Clicking

Make your code more protective with this jquery code.


Just Paste this code just before the body section of your page.

$(function()
{ $(document).on("contextmenu",function(e){
e.preventDefault();
});
});