I have one class of divs ('open') the contain another class of divs ('items') like this:
<div class="open">
<div class="item">
this is a test 1
</div>
<div class="item">
this is a test 2
</div>
</div>
What I'm looking to do is a slidedown of all the 'item' class divs that are in the 'open' class that's clicked.
So far I have
$(document).ready(function () {
$('.open').click(function () {
$(this).find(':first-child').slideDown('1000');
});
but it's not working. Any suggestions?
Thanks, John