Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/01/2010, 08:50
Folter
 
Fecha de Ingreso: diciembre-2008
Mensajes: 67
Antigüedad: 15 años, 4 meses
Puntos: 1
Respuesta: Retroceder en una función

He probado lo tuyo Mayid y no funciona, lo he puesto de esta manera, no se si esta bien

Cita:
$(function infinita() {
$("#artist_1").show();
setTimeout(function(){
$("#artist_1").hide();
$("#artist_2").show();
setTimeout(function(){
$("#artist_2").hide();
$("#artist_3").show();
setTimeout(function(){
$("#artist_3").hide();
$("#artist_4").show();
}, 5000);
}, 5000);
}, 5000);

infinita();
});