Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some HTML like this:

<div>TEXT
    <span>SPAN</span>
        <a href="">LINK</a>
</div>

I would like to remove the contents of the elements, usually I would do something like this:

$('*').empty(); 

or

$('*').contents().empty();

This however will remove/empty the first span and its content which is the div and link. What can I do to preserve the elements while emptying them? So the end result would be:

<span>
    <div></div>
    <a href=""></a>
</span>

Please note I'm looking for something 'universal' that can be applied to any HTML. The above is just an example, in reality the HTML structure would contain more data.

Example at JsFiddle

share|improve this question
I added a link to JsFiddle – Youss Mar 19 at 21:10
2  
First things, placing div within span is not right – thecodeparadox Mar 19 at 21:10
1  
@thecodeparadox Ok thank will change that – Youss Mar 19 at 21:15
2  
I think you're using the term attributes when you mean to say elements. – Jacob VanScoy Mar 19 at 21:24
show 1 more comment

3 Answers

up vote 3 down vote accepted

Recursively loop through all nodes, and remove all children whose nodeType property equals 3 (Node.TEXT_NODE). jQuery cannot select just text nodes, so this can be done using vanilla JavaScript.

Example:

function removeText(node) {
    if (!node || !node.childNodes || !node.childNodes.length) return;
    for (var i=node.childNodes.length-1; i>=0; --i) {
        var childNode = node.childNodes[i];
        if (childNode.nodeType === 3) node.removeChild(childNode);
        else if (childNode.nodeType === 1) removeText(childNode);
    }   
}

Or, packed in a jQuery plugin:

$.fn.removeText = function() {
    for (var i=this.length-1; i>=0; --i) removeText(this[i]);
    return this;
};

http://jsfiddle.net/hcKsX/

share|improve this answer
It doen't seem to work in my example – Youss Mar 19 at 21:24
1  
@Youss I added a fiddle. It seems to work fine. Also with your example: jsfiddle.net/hcKsX/1 – Rob W Mar 19 at 21:26
+1 Worked for me. Good solution. – Jacob VanScoy Mar 19 at 21:32
Yes! it works:) Thank you very much. Does this only work for text..? Do you think it can be applied to other data like images? – Youss Mar 19 at 21:33
1  
@Youss Yes. $('img').remove();. There are several kinds of nodes in DOM. Often, you're interested in manipulating elements, and occasionally text nodes. Other node types also exist, but you will probably not use these as often as the previous two types. See also: developer.mozilla.org/en-US/docs/DOM/Node.nodeType – Rob W Mar 19 at 21:42
show 4 more comments

Get the children of the parent item and set their html like thus:

$('#myspan').children().html('');

jsFiddle

share|improve this answer
2  
What about the more levels of nesting? – Ushakov Nik Mar 19 at 21:20

These solutions are all ok, but none of them satisfy your condition.

Example #1: remove all text inside leaf nodes

$('body *:not(:has(*))').empty()

result:

<span>SPAN
    <div></div>
    <a href=""></a>
</span>

Example #2: remove all text inside children of just one node

$('body span').children().html('')

result:

<span>SPAN
    <div></div>
    <a href=""></a>
</span>

(same as above). However, this solution would not work if there were more than 2 levels of nesting.

Other solutions have similar downfalls.

The real problem here is there's no good way to clear text out of a node that is both a parent node AND a text node. You should either hack something together or re-render your view each time.

share|improve this answer
I understand you very clear:) At the moment I'm scraping bbc news. Using the codes in the anwsers so far does a lot of 'damage' to the HTML structure – Youss Mar 19 at 21:22

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.