Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery - get text for element without children text

for example we have this file

<div id="mydiv">
    some text here 
    <div id="inner div">
         text for inner div
    </div>
</div>

i need to get #mydiv text only with some code like this :

alert($('#mydiv').text());  // will alert "some text here"
like image 204
Farok Ojil Avatar asked Jul 06 '12 12:07

Farok Ojil


3 Answers

hey try this please": http://jsfiddle.net/MtVxx/2/

Good link for your specific case in here: http://viralpatel.net/blogs/jquery-get-text-element-without-child-element/ (This will only get the text of the element)

Hope this helps, :)

code

jQuery.fn.justtext = function() {

    return $(this).clone()
            .children()
            .remove()
            .end()
            .text();

};

alert($('#mydiv').justtext());​
like image 110
Tats_innit Avatar answered Oct 30 '22 10:10

Tats_innit


The currently accepted answer is pretty horrible in terms of performance, so I felt obligated to write a more lightweight one:

$.fn.mytext = function() {
    var str = '';

    this.contents().each(function() {
        if (this.nodeType == 3) {
            str += this.textContent || this.innerText || '';
        }
    });

    return str;
};

console.log($('#mydiv').mytext());​
like image 35
Ja͢ck Avatar answered Oct 30 '22 09:10

Ja͢ck


Like Ja͢ck's answer but no need for iterating explicitly (via .each()) and collecting textContents:

$('#mydiv').contents().filter(function(){return this.nodeType === 3}).text()

OR, if you can use arrow functions:

$('#mydiv').contents().filter((i, el) => el.nodeType === 3).text()
like image 5
Iv Ov Avatar answered Oct 30 '22 09:10

Iv Ov