web page help

Discuss anything not covered in another forum (life, the universe etc.)... Please keep it PG-13 and avoid spam.
Post Reply
User avatar
FastENUF
Posts: 335
Joined: Mon Aug 13, 2001 1:17 am
Location: Portland, Oregon

web page help

Post by FastENUF »

what, or where can i get the code for disabling right click on my web page???
www.pineappleracing.com

When a guy talks dirty to a girl.. it's called sexual harrassment. When a girl talks dirty to a guy it costs 3.95 a minute.
User avatar
FunK
Senior Member
Posts: 2745
Joined: Sun Aug 06, 2000 12:00 pm

Post by FunK »

Code: Select all

<script language="JavaScript">
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("Please don't take my valuable work!");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</script> 
FunK
Simply run adaware, spybot, ZoneAlarm, HijackThis, AVG, update windows daily, have a router, don't open e-mail, turn off action scripting, don't use P2P networks, don't violate EULAs, and wear a condom to get Windows secured.

People say Linux is alot of work!
Post Reply