Is there a way to fade a parent element slowly and have a child element appear or disappear instantly?
I tried this, but it doesn't work..
html
<figure>
<p>Foo Figure...</p>
<figcaption>Bar Caption...</figcaption>
</figure>
jQuery
$('figure').hide();
$('figure').fadeIn({
duration: 1000,
start: function(){
$(this).find('figcaption').show();
}});
fiddle