hi , i want to grab text inside a div element like this :
<div class='someclass'>
<blockquote>some text ! </blockquote>
another text goes here .
</div>
so i get all text with jQuery like this: var qtext = $('.someclass').text();
but i don't want <blockquote>some text ! </blockquote>
i just need the text inside div element . how can i filter that ?
tanks guys .