View Single Post
Old 10-29-2005, 06:39 PM  
sumphatpimp
Confirmed User
 
Join Date: Aug 2002
Posts: 5,235
you can try this if you want.
it prevents right click.


<!-- Right Click - Prevent Script
Use this link to help prevent users from stealing your code !-->

<script language="JavaScript">
function right(e) {
if (navigator.appName hahahaha 'Netscape' &&
(e.which hahahaha 3 || e.which hahahaha 2))
return false;
else if (navigator.appName hahahaha 'Microsoft Internet Explorer' &&
(event.button hahahaha 2 || event.button hahahaha 3)) {
alert("Please don't steal my stuff!!!");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</script>
sumphatpimp is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote