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