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

I would like to remove one div element, but without its children. For example, let's say that i have one div with id wrapper, and inside it 5 paragraphs.

I want to remove only the wrapper div, but to leave paragraphs alive. I have tried both remove() and detach(), but they both clean out the inner elements.

Any advice?

share|improve this question
Older question, probably with obsolete answers: stackoverflow.com/questions/2032317/… – Robert Harvey Jun 28 '12 at 21:10

4 Answers

up vote 13 down vote accepted

http://api.jquery.com/unwrap/ should do it.

share|improve this answer

Check out .replaceWith()

$('#theDiv').replaceWith($('#theDiv').contents());
share|improve this answer
You are the saviour. I'm using one CMS, which tends to add wrapper div to any content added through HTML editor. But it messed up my absolute positioned elements, so i needed to remove it. – suludi Jun 28 '12 at 21:12
Uku's solution looks better – Steve Robbins Jun 28 '12 at 21:35

jsFiddle demo

$('#element').contents().unwrap();
share|improve this answer
Too late...... :) – Robert Harvey Jun 28 '12 at 21:11
Might be @Robert, but doing just .unwrap() you'll do nothing (if you use the 'parent' as a selector). – roXon Jun 28 '12 at 21:14
$('#yourdivIDtoremove').replaceWith($(this).text());

should do ;)

share|improve this answer
Someone already provided a replaceWith answer four minutes ago. – Robert Harvey Jun 28 '12 at 21:15
text() will wipe out html tags – charlietfl Jun 28 '12 at 21:16
yes he wants to remove the div tag – ayhan yildiz Jun 28 '12 at 21:21

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.