HI,
Can somebody help me with this :
This is my HTML:
<div class="Breadcrumb">
<a href="#">Home</a> >
<a href="#">Projects</a> >
Projects Text
</div>
I want to get with jQuery the string what is not in anchor tag , in this example is "Projects Text"
Theoretically something like this
jQuery :
var name = $("Breadcrumb (not <a>) ").text();
but I don't need this one " >
"
Thanks !