| Author: Kumar Velu 19 Jul 2008 | Member Level: Diamond | Rating: Points: 6 |
hi,
You can protect your webpage from being copied or hide your source code for some reason to internet users by disabling the right click button of the mouse. You can disable the right click using the following java script code. It works for both firefox and internet explorer. Just copy and paste inside the “body” tag;
<script language="JavaScript"> <!--
var message=""; /////////////////////////////////// function clickIE()
{if (document.all) {(message);return false;}}
function clickNS(e) { if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else {document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false") // --> </script>
|
| Author: shanmukha kumari 21 Jul 2008 | Member Level: Gold | Rating: Points: 6 |
<script language=JavaScript> <!--
//Disable right mouse click Script //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive //For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
/////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } }
function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } }
if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; }
document.oncontextmenu=new Function("alert(message);return false")
// --> </script>
|