vote up 9 vote down star
4

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

flag

1 Answer

vote up 9 vote down check

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

$(elem)
  .contents()
  .filter(function() {
    return this.nodeType == Node.TEXT_NODE;
  });
link|flag
6  
actually $(elem) .contents() .filter(function() { return this.nodeType == Node.TEXT_NODE; }); is enough – Jauco Jul 11 at 13:53

Your Answer

Get an OpenID
or

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