How Disable Right Click on Webpage ??
-
Code which is used to Disable the right click Button on web-page. --------------------------------------- <script type="text/javascript"> <!--// function press() { if (event.button==2) { alert('Sorry, Right click is not allowed') return false; } } document.onmousedown=press //--> </script> --------------------------------------- Just add this in HTML code after Head Tag. Give me comment and suggestions other than this. Regards Dinesh Verma
-
Code which is used to Disable the right click Button on web-page. --------------------------------------- <script type="text/javascript"> <!--// function press() { if (event.button==2) { alert('Sorry, Right click is not allowed') return false; } } document.onmousedown=press //--> </script> --------------------------------------- Just add this in HTML code after Head Tag. Give me comment and suggestions other than this. Regards Dinesh Verma
-
Hi, Just have a look at the following codeproject article. I am sure it will help. Disabling the right click on web page[^]
Either you love IT or leave IT...
Just out of interest... why would you want to disable the right click? Any web programmer knows that code rendered in a browser can not be hidden! All the functionality in right click is available in the menu bar.
-
Just out of interest... why would you want to disable the right click? Any web programmer knows that code rendered in a browser can not be hidden! All the functionality in right click is available in the menu bar.
-
Yeah it was