Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/09/2003, 10:17
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola, Yusta.

A ver si esto te sirve:

<a href="tupagina.html" onmousedown="return boton(event)">Enlace</a>

La función sería algo así:
Código PHP:
function boton(e) {
    if(
e.button==1) return true
    
if(e.button==2)
        
alert('botón derecho pulsado');

Saludos,