For example we have the next code (it could be any tag with nested tags and text):
<td id='test'>
Hello
<a href='foo.html'>JS</a>
<noindex>Map</noindex>
Take me
<div>nice</div>
Skip me
</tr>
How can I retrieve 'Take me' by jQuery selectors ?
NOTE: $('#test').text()
will return all texts: Hello JS ...