I'm looking for a way to select elements that contain a certain element and then filter the results to get only the highest level. Difficult to explain but made easier with an example:
<div id="one">
<div id="two">
<div id="three" class="find-me"></div>
</div>
</div>
<div id="four">
<div id="five" class="find-me"></div>
</div>
In this case, I would want my set to contain #one and #four. If I try to do something like this:
var elements = $('div').has('.find-me');
I get elements #one, #two and #four.
Note: By 'highest level' relates to the topmost element in the first selector, $('div') in this case.