I need to select an element based on what is not inside it's element.
<div class="person">
<div class="name">Jason</div>
</div>
<div class="person">
</div>
What do I need to do to select the second div
with the person
class. I know there are has
and not
properties, do I need to combine them in some way to get this to work?