04/04/2002, 19:02
|
| | | Fecha de Ingreso: julio-2001 Ubicación: En algun lugar de un gran pais
Mensajes: 418
Antigüedad: 23 años, 6 meses Puntos: 0 | |
Re: ¿Como desactivar esta tecla? Si quieres algo mejor aqui esta este script:
<!-- Botón derecho del mouse -->
<script LANGUAGE="JavaScript1.1">
<!-- Adaptado por Tk: Compatible con IE y NS -->
<!-- Script original enviado por Graciela -->
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>
extraido del deposito de JScript
saludos y suerte
<img src="http://www.efrance.fr/masterASP/firma.jpg" width="465" height="79" border="0" usemap="#URL">
<map name="URL">
<area shape="rect" coords="270,48,347,61" href="http://www.efrance.fr/masterasp" target="_blank">
</map> |