how to disable right click using JavaScript

you Want to protect your source code? Using this code will prevent the vast majority of users from right-clicking over a page and choosing “View source”, or right-clicking over an image and saving it.

Some times there might be the requirement to disable the pop up menu on click of right button. Programmers may need to disable right click to prevent user from saving the images on the page or viewing the source of the page.

Here we provided code to disable / restrict / prevent mouse right click in web page using JavaScript. The code has to be copied in your web page HEAD section and it will disable / restrict / prevent mouse right click using JavaScript.

JavaScript Code For Disable Right Click

<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
function disableclick(event)
{
  if(event.button==2)
   {
     alert(status);
     return false;    
   }
}
</script>

If You have any question and problem in this code feel free, leave comment below! SHARE WITH YOUR FRIENDS..

About Author

My name is Mukesh Jakhar and I am a Web Application Developer and Software Developer, currently living in Jaipur, India. I have a Master of Computer Application in Computer Science from JNU Jaipur University. I loves to write on technology and programming topics. Apart from this, I love to travel and enjoy the beauty of nature.

Sign up for weekly update

Milkshake is almost ready. If you're interested in testing it out, then sign up below to get exclusive access.