Hi, I know you can do something like this:
$('#item').fadeOut().delay(1000).fadeIn();
which will fade the element with the id of item out, then wait a second before fading it back in again. But is there a way to fade one item out and a different one back in with a delay inbetween. I've tried this but it didn't work:
$('#item1').fadeOut().delay(1000).('#item2').fadeIn();
Any help much appreciated
Thanks