Selecting only first level element, not child elements with the same element name
- by tester
How would I select only the first level .block and not any of the children?
$('.block:not("Children of this here")') <--
<div class="block">
<div class="block">
<div class="block">
</div>
</div>
</div>