View Full Version : no right clicking?


domino777
07-16-2004, 06:42 PM
how do i make it so no one can right click on my page? i just want a little window to pop and say stuff when they right click... and does ne one have a code that makes it so people cant hightlight stuff too?


i've had problems with copying.. its really sad when you have to resort to using this stuff... please help! thanks a bunch :)

Xaturna
07-16-2004, 06:58 PM
<script LANGUAGE="JavaScript">
var message="Hey!";
function click(e)
{
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
</script>


Copied straight from my own xanga page ^^. (It's oh kay because verybody has that code.. nearly everybody) Just change the "Hey!" into what you want to say in protest of their right clicking crime (lol

domino777
07-17-2004, 12:14 AM
thanks a million! xD