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 would like to remove the parent and keep the children in my HTML using jQuery. This works:

$('#my_span').children().insertBefore('#my_span').end().end().remove();

However, it removes the text and comment node types - how can I amend this so that I keep the text?

Happy to do this with pure Javascript too.

share|improve this question

3 Answers

up vote 5 down vote accepted

As @Cory Larson says, unwrap() should help you acheive this.

Alternatively, you could do something like this:

$('#my_span').parent().html($('#my_span').html());
share|improve this answer
Ah I like this, as it works in the scenario I need it in! – Abs Oct 13 '11 at 16:04

Have you tried using the unwrap() method in the jQuery library? If it leaves text and comments in place, you could reduce your code to:

$('#my_span').unwrap();

If you don't want all of the children removed, you could extend jQuery with the following modified unwrap method (found it here), which will replace an element with its children:

$.fn.myUnwrap = function() {
    this.parent(':not(body)').each(function(){
        $(this).replaceWith( this.childNodes );
    });
    return this;
};

And then using it would be easy:

$('#my_span').myUnwrap();
share|improve this answer
I switched away from unwrap because for different elements like ul which has children li - I don't want to remove them but unwrap will. To overcome this I have to use a condition to check what sort of element it is and then work out depth of unwrapping and this won't work for me. – Abs Oct 13 '11 at 16:01
Could you show us the actual HTML you're working with? Also, <li> elements can't exist outside of a <ul> or <ol> -- unwrapping them should remove them. – Cory Oct 13 '11 at 16:04

You could try

$($("#my_span")[0].inntHTML).insertBefore("#my_span");
$("#my_span").remove();
share|improve this answer

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.