Disable right click on web page and images

Sometimes it is required to prevent your web page images from being copied by another one. You can secure your images by disabling right click or by disabling image context menu on images only. This is an effective approach to prevent your images from being copied or stolen. Here I am going to share the tricks how can you achieve this. This trick will disable right click only on images. Add the below event handler to the img or image tag as shown below:

Disable right click on images

  1. <asp:Image ID="img1" runat="server" ImageUrl=""../ImgLoc/1.png"" oncontextmenu="return false;" />
  2. <img alt="MyImage" src="../ImgLoc/2.png" oncontextmenu="return false;"/>

Note

  1. It is impossible to prevent images from being stolen completely since there are so many tools and software through which any one can steal yours images. But something is better than nothing.

Disable right click on web page

Similarly we can disable right click on whole page by adding oncontextmenu handler in body tag of webpage. Now this will disable right click on each and every control of a webpage.
  1. <html>
  2. <head>
  3. ...
  4. </head>
  5. <body oncontextmenu="return false;" >
  6. ...
  7. </body>
  8. </html>

Show alert on right click

  1. <script type="text/javascript">
  2. function disableRightClick()
  3. {
  4. alert("Sorry, right click is not allowed !!");
  5. return false;
  6. }
  7. </script>
  8. <body oncontextmenu=" return disableRightClick();">
  9. ...
  10. </body>
Summary
In this article, I explain how can you disable right click on webpage and images. I hope after reading this article you will be able to do this. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.