I am dynamically displaying multiple rows of div's.
Div sets look like this:
<div class="triggerbutton">
<img src="/images/clickme.png" alt="" />
</div>
<div class="hiddendivs" style="display:none;">
some stuff here
</div>
I am using this JQuery:
$('.triggerbutton').click(function() {
$('.hiddendivs').show('slow');
});
But I only want the hiddendivs after the triggerbutton to be showed and not all the hiddendivs available.
How can I do this?