Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/05/2010, 12:53
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: Problema usando el mismo evento ?

Si es tal cual, así esta claro que el problema esta en las id repetidas. No se puede usar id repetidas:

<a href="#responder" id="responder">Enlace 1</a>
<a href="#responder" id="responder">Enlace 2</a>

Usa un atributo class:
Cita:
$(document).ready(function() {
//Abrir el table de repuesta
$(".responder").click(function()
{
$("#menuResponder").show();
$("#menuResponder").focus();
});
});

<a href="#responder" class="responder">Enlace 1</a>
<a href="#responder" class="responder">Enlace 2</a>