De funcionar , funciona. (te dejo la muestra.)
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Quanta Plus">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><script language="JavaScript">
function boton(e) {
if(e.button==1)
alert('botón izquierdo pulsado');
if(e.button==2)
alert('botón derecho pulsado');
}
</script>
</head>
<body>
<a href="tupagina.html" onmousedown="return boton(event)">Enlace</a>
</body>
</html>
Per sigo con la duda, si donde dices que ponga el codigo (cambiando el alert()) coloco la funcion no funciona..... help . (solo he cambiado la primera celda)
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
<script language="javascript">
function boton(e) {
if(e.button==1)
alert('botón izquierdo pulsado');
if(e.button==2){
function cogerDato(celda){
destino = document.getElementById("instancia");
destino.value = celda.innerHTML;
}
}
</script>
</head>
<body>
<table width="50%" border="1" align="center">
<tr><td id="hola" onmousedown="return boton(event)">HOLA</td><td id="tardes" ondblclick="cogerDato(this)">TARDES</td><td id="noches" ondblclick="cogerDato(this)">NOCHES</td></tr>
<tr><td id="buenos" ondblclick="cogerDato(this)">BUENOS</td><td id="dias" ondblclick="cogerDato(this)">DIAS</td><td id="semanas" ondblclick="cogerDato(this)">SEMANAS</td></tr>
<tr><td id="adios" ondblclick="cogerDato(this)">ADIOS</td><td id="meses" ondblclick="cogerDato(this)">MESES</td><td id="años" ondblclick="cogerDato(this)">AÑOS</td></tr>
</table>
<form id="form1" name="form1" method="post" action="">
<div align="center">
<input id="instancia" name="instancia" type="text" value="" size="8" maxlength="8"/>
<input type="submit" name="Submit" value="UPDATE" />
</div>
</form>
<p> </p>
</body>
</html>