Is there an easy way to grab the text from this div with out getting any child elements?
<div id="someselector">
<strong>Title Text Unwanted</strong> This is the text I need
</div>
I know I probably could do a substring on the strong. I was just wondering if there was a function that could automatically do it for me in jQuery like:
$('#someselector').html().not('strong').text()