Ver Mensaje Individual
  #7 (permalink)  
Antiguo 10/03/2010, 12:09
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: Mostrar elemento un tiempo y luego no mostrarlo

Cita:
$('label[for="' + $(this).attr("class") + '"]').fadeOut(), 5000 });
Se usa así, con comillas:
setTimeout("funciones", tiempo)

setTimeout("$('label[for=' + $(this).attr(\"class\") + ']').fadeOut()"), 5000 });

Se complica por que tenes muchas comillas. Probalo. Pero mejor, asi:

Cita:
obj = $('label[for="' + $(this).attr("class") + '"]');

obj.show();

setTimeout("obj.fadeOut('fast')", 5000 });
Y si todavía no funciona, quizas la variables vaya entre parentesis.

$(obj).show();