Posts

Showing posts from June, 2013

Disable right click on web page and images and all content

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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">      <head>                  <script type="text/javascript"> function disableRightClick() { alert("Sorry, right click is not allowed !!"); return false; } </script>            </head>       <body oncontextmenu=" return disableRightClick(); "> </body> </html> Show alert on right click        <script type="text/javascript"> function disableRightClick() { alert("Sorry, right click is not allowed !!"); return false; } </script>