Possible Duplicate:
Getting text within element excluding decendants
how to get only the text of an element without getting the inline element using jQuery?
I have the following problem:
<p><strong>Test 1</strong> this is test 1 results</p>
How do I capture only "this is test 1 results" into an array using jQuery? I attempted this but it's not working:
var TextResults = $("strong").parent("p").text();
var arrayTestResults = TextResults.split(" ");