Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/07/2010, 06:02
asimov8
 
Fecha de Ingreso: julio-2010
Mensajes: 1
Antigüedad: 13 años, 9 meses
Puntos: 0
Desplegar DIV ie

Hola, pues tengo una pequeña duda, tengo este codigo::

//Comment Box Slide
$('.comment').live("click",function()
{

var ID = $(this).attr("id");
alert (ID);
$(".fullbox"+ID).show();
$("#c"+ID).slideToggle(300);


});
Y con este boton lo activo:

<input type="button" value="Comenta" class="comment" id="<?php echo $idm; ?>" align="right"></input>

En firefox y chrome funciona, en ie no, ni siquiera entra en la funcion.

Saludos y graias