|
i have a code that will not allow your viewers to right-click (so the dont right-clikc and copy stuff) this is only one way of stopping people but there are some other not so common ways to copy stuff.
<br>
the code is:
<script> function right( e ) { if (navigator.appName == 'Netscape' && ( e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert("TEXT THAT PEOPLE TRYING TO RIGH-CLICK SEE GOES HERE"); return false; } return true; } document.onmousedown=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=right; </script> Thats it, it should work, e-mail me if it does not work Go to http://www.geocities.com/mimic_band/index.html to see what i does.
|
| Inline: | Outline: |
|
to: |
|
|