![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
11/07/2002, 14:28
|
|
Re: hola! espero me ayuden. Creo que esto te puede ayudar ...
Es un javascript que te permite anular el botón derecho del mouse ... pero igual ... podrían "guardar como" y listo ... todo tu código fuente a su disposición .... creo que hay otra manera ... pero no me la sé ...je ;)
<script LANGUAGE="JavaScript1.1">
function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('Botón derecho inhabilitado')
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('Botón derecho inhabilitado')
}
}
document.onmousedown=derecha
</script>
espero te sirva ....
chao...
<div align="center"><img src="http://www.xicox.com/firma/firma.gif" width="468" height="100"></div> |