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

How can I remove an element but not the content inside that element?

<a href="#">
    <span>
        <img src="pic-1.jpg"/>
    </span>
</a>

I want to remove the span that wraps the image.

So I can get,

<a href="#">

    <img src="pic-1.jpg"/>

</a>
share|improve this question

4 Answers

up vote 9 down vote accepted

You need unwrap

$('img').unwrap();
share|improve this answer
thats fab! thanks! – lauthiamkok Mar 17 '12 at 18:34
Ooh, nice function. +1 for actually searching instead of doing what I did. – Elliot Bonneville Mar 17 '12 at 18:34

The jQuery function unwrap() is what you're looking for:

Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.

Check out the API doc page for more information.

share|improve this answer
that's great thanks! :-) – lauthiamkok Mar 17 '12 at 18:34
$(document).ready(function(){
  $span = $('span');
  $span.replaceWith($span.html());
}); 

see example http://jsfiddle.net/vikastyagi87/Xaa39/6/

share|improve this answer

You'll have to modify your HTML architecture a bit here:

<a href="#" id="my_href">
    <span id="my_span">
        <img src="pic-1.jpg"/>
    </span>
</a>

jQuery solution:

$("#my_href").html($("#my_span").html());

Non jQuery solution:

document.getElementById("my_href").innerHTML = document.getElementById("my_span").innerHTML;
share|improve this answer
2  
Using HTML like this is generally a bad practice. You're destroying and recreating nodes instead of simply relocating the ones to keep, and removing the ones to discard. It'll also destroy any handlers or other data associated with the img element. – squint Mar 17 '12 at 18:40
1  
Ah, really? Okay, I'll avoid that in the future then. :) – Elliot Bonneville Mar 17 '12 at 18:41
That is NOT jQuery solution! – gdoron Mar 17 '12 at 18:46
@gdoron Could you be a little more explicit please? Thanks. – Elliot Bonneville Mar 17 '12 at 18:47
All was said by @amnotiam. Just use unwrap Now that's a jQuery solution! simple-clean-effective => jQuery solution. – gdoron Mar 17 '12 at 18:50
show 1 more comment

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.