Selecting child element
- by ScG
I have the following div
<div id="acc">
<a href="#">Link 1</a>
<div>
Some Content
</div>
<a href="#">Link 2</a>
<div>
Some Content
</div>
</div>
All the div's are collapsed to start with. How can I select the first div child of 'acc' and say Slide Down on it
I have cached the selector like this:
var $acc = $(acc);