I'm trying to show the elements in sequence:
<p class="desc">1)INFORMACAO1?</p>
<p class="desc">2) INFORMACAO2</p>
<p class="desc">3)INFORMACAO3</p>
<p class="desc">4) INFORMACAO4</p>
<p class="desc">5) INFORMACAO5</p>
I'm not getting this line of code:
$(this).next('.desc').fadeIn('slow');
This works, but shows everyone:
$('.desc').fadeIn('slow');