I have the below html markup
<div class="title-wrap">
<span class="title">Hello World</span>
<br/>
This title is about Hello World
</div>
and I want to target the text 'This title is about Hello World'
But I can't work out how to do this with out also including the span? Is it possible to achieve this with the html in this format?
I have tried using
var test = (jQuery('.title-wrap').text() || '' );
alert (test);
but this returns
Hello World
This title is about Hello World
as shown in this fiddle.