Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?

share|improve this question

8 Answers

up vote 101 down vote accepted

jQuery doesn't have a convenient function for this. You need to combine contents(), which will give just child nodes but includes text nodes, with find(), which gives all descendant elements but no text nodes. Here's what I've come up with:

var getTextNodesIn = function(el) {
    return $(el).find(":not(iframe)").addBack().contents().filter(function() {
        return this.nodeType == 3;
    });
};

getTextNodesIn(el);

Note: If you're using jQuery 1.7 or earlier, the code above will not work. To fix this, replace addBack() with andSelf(). andSelf() is deprecated in favour of addBack() from 1.8 onwards.

This is somewhat inefficient compared to pure DOM methods and has to include an ugly workaround for jQuery's overloading of its contents() function (thanks to @rabidsnail in the comments for pointing that out), so here is non-jQuery solution using a simple recursive function. The includeWhitespaceNodes parameter controls whether or not whitespace text nodes are included in the output (in jQuery they are automatically filtered out).

function getTextNodesIn(node, includeWhitespaceNodes) {
    var textNodes = [], whitespace = /^\s*$/;

    function getTextNodes(node) {
        if (node.nodeType == 3) {
            if (includeWhitespaceNodes || !whitespace.test(node.nodeValue)) {
                textNodes.push(node);
            }
        } else {
            for (var i = 0, len = node.childNodes.length; i < len; ++i) {
                getTextNodes(node.childNodes[i]);
            }
        }
    }

    getTextNodes(node);
    return textNodes;
}

getTextNodesIn(el);
share|improve this answer
Can the element passed in, be the name of a div? – crosenblum Feb 10 '11 at 15:56
@crosenblum: You could call document.getElementById() first, if that's what you mean: var div = document.getElementById("foo"); var textNodes = getTextNodesIn(div); – Tim Down Feb 10 '11 at 16:43
   
Because of a bug in jQuery if you have any iframes in el you'll need to use .find(':not(iframe)') instead of .find('*') . – rabidsnail Feb 3 '12 at 0:29
@rabidsnail: What's the bug? – Tim Down Feb 3 '12 at 9:42
@rabidsnail: I think, the use of .contents() anyways implies it will search through the iframe as well. I don't see how it could be a bug. – Robin Maben Feb 6 '12 at 11:52
show 4 more comments

Jauco posted a good solution in a comment, so I'm copying it here:

$(elem)
  .contents()
  .filter(function() {
    return this.nodeType === 3; //Node.TEXT_NODE
  });
share|improve this answer
23  
actually $(elem) .contents() .filter(function() { return this.nodeType == Node.TEXT_NODE; }); is enough – Jauco Jul 11 '09 at 13:53
4  
Does not work under IE7. Node is undefined. – rafek Dec 29 '09 at 8:09
28  
IE7 doesn't define the Node global, so you have to use this.nodeType == 3, unfortunately: stackoverflow.com/questions/1423599/node-textnode-and-ie7 – Christian Oudard Dec 29 '09 at 20:00
6  
Does this not only return the text nodes that are the direct children of the element rather than descendants of the element as the OP requested? – Tim Down Oct 15 '10 at 14:12
I think you're right. Care to submit an improvement? – Christian Oudard Nov 29 '10 at 19:42
show 1 more comment

I know this thread's a bit old, but here's a handy script turning this into a jquery function. http://refactormycode.com/codes/341-jquery-all-descendent-text-nodes-within-a-node#refactor_12159

share|improve this answer
$('body').find('*').contents().filter(function () { return this.nodeType === 3; });
share|improve this answer

if you want to strip all tags, then try this

function:

String.prototype.stripTags=function(){
var rtag=/<.*?[^>]>/g;
return this.replace(rtag,'');
}

usage:

var newText=$('selector').html().stripTags();
share|improve this answer

What I've come up with is:

var myText = $('div').contents(':not(span)').text();

This approach is not flexible but sometimes useful.

demo jsFiddle

share|improve this answer
Doesn't really work for me jsfiddle.net/gYH88/141 Any ideas on why not..? – Youss Mar 20 at 11:21
@Youss you're trying to hide the LI elements: jsfiddle.net/gYH88/142 – Roko C. Buljan Mar 20 at 13:16

If you can make the assumption that all children are either Element Nodes or Text Nodes, then this is one solution.

To get all child text nodes as a jquery collection:

$('selector').clone().children().remove().end().contents();

To get a copy of the original element with non-text children removed:

$('selector').clone().children().remove().end();
share|improve this answer
Just noticed Tim Down's comment on another answer. This solution only gets the direct children, not all descendents. – colllin Apr 20 '11 at 14:58

Y have the same problem.

Y solved with:

Code:

$.fn.nextNode = function(){
  var contents = $(this).parent().contents();
  return contents.get(contents.index(this)+1);
}

Usage:

$('#my_id').nextNode();

Is like next() but return also the text nodes.

share|improve this answer
2  
What about .nextSibling? – Michel de Ruiter Jan 16 '12 at 11:24
.nextSibling is from Dom specification: developer.mozilla.org/en/Document_Object_Model_(DOM)/… – Guillermo Feb 14 '12 at 10:15
1  
So? Is that forbidden? – Michel de Ruiter Feb 14 '12 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.