im trying to fade in the .example element which is hidden using:
.example {
display: none;
}
the javascript:
$('.clickme').click( function() {
.....
....
$el.html(html).children().hide().each(function(i, e){
if($(this).hasClass('special')){
$(this).delay(i*600).show(0);
animateDiv(e.id);
}
else{
$(this).delay(i*600).fadeIn(900); // the problem is here its not fading in
}
working example is here: http://jsfiddle.net/6czap/19/
i cnt seem to find out what the problem is, i have tried this without the click event, and it works.
Add .show() after you alter the contents of .example div.
Working Example