I'm trying to make the text appear with a time and the image appears with a slightly longer time difference, to give a more interesting effect. The html code and js I will provide. The problem is that where the images are in the same block as the text. HTML
<div class="span10">
<div class="colorBody bodyForm">
<div id="show" style="display: none;">
<section >
<article class="textBox letra">
<header><h2>BOX banheiro</h2></header>
<span></span>
<br/>
<span></span>
</article>
<div class="imgRigth">
<img src="/img/box/bortovidros-1.jpg"/>
</div>
</section>
</div>
</div>
JavaScript:
function showBody(){
$('#show').fadeIn(1000);
}