can I select #id > #id with jQuery?
I've got this structure
<div id="slide1">
<div id="slide_body">
some content
</div>
</div>
<div id="slide2">
<div id="slide_body">
some content
</div>
</div>
Is there a way to select, using jquery, only the #slide_body inside #slide1?
Or is the only solution to append the id to each body div like
<div id="slide2">
<div id="slide_2_slide_body">
some content
</div>
</div>
