Add to the top of you page and make the page not able to be right clicked.
Code <html> <head> <script type="text/javascript"> if (document.addEventListener) { document.addEventListener('contextmenu', function(e) { alert("Right click is disabled."); //script by gaming-input.com e.preventDefault(); }, false); } else { document.attachEvent('oncontextmenu', function() { alert("Right click is disabled."); window.event.returnValue = false; }); } </script> </head> <body> </body> </html> |
Total comments (1)
0
| |