I would like to get all descendant text nodes of an element, as a jQuery collection. What is the best way to do that?
|
jQuery doesn't have a convenient function for this. You need to combine
Note: If you're using jQuery 1.7 or earlier, the code above will not work. To fix this, replace This is somewhat inefficient compared to pure DOM methods and has to include an ugly workaround for jQuery's overloading of its
|
|||||||||||||
|
|
Jauco posted a good solution in a comment, so I'm copying it here:
|
|||||||||||||||||||
|
|
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 |
|||
|
|
|
||||
|
|
|
if you want to strip all tags, then try this function:
usage:
|
|||
|
|
|
What I've come up with is:
This approach is not flexible but sometimes useful. |
|||||
|
|
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:
To get a copy of the original element with non-text children removed:
|
||||
|
|
Y have the same problem. Y solved with: Code:
Usage:
Is like next() but return also the text nodes. |
|||||||||||
|
|
Can also be done like this:
The above code filters the textNodes from all the child nodes of a given element. |
||||
|
|