given the html:
<div>
<span class="a">a
<span class="b">b</span>
</span>
<div>
Is it possible to just select the first span and not it's children?
Calling $('div span.a').text()
prints the 'b' in the child node as well as the 'a'