I’ve search the jquery site for this …and I just can’t find it.
I’m trying to select <p> tags in a .desc class…
<div class = "desc">
<p>blahwhatever</p>
</div>
I’m trying make sure <p></p> does not display till my animation of .desc is done…
$(".desc p").hide();
//animation here...
$(".desc p").delay(500).show();
This hasn’t worked yet… any suggestions?
(Sorry for the trivial question..)
To get things working as you would want add the show into the
animate()methods callback try this:working example: http://jsfiddle.net/X3qkH/