I'm using jQuery and I would like to replace some content in a wrapper div, but keep other content intact. Using my example, I want to retain .link, but replace all the child elements. Using html() on the parent will replace everything: $('.parent').html(data)

Is there a way to keep the .link div without messing around with the structure? I'll change the structure if there is a good reason to, but let's otherwise assume I have to call the data replacement funciton on the .parent div.

<div class="parent">
   <div class="child-1">
   </div>
   <div class="child-2">
   </div>
   <!-- etc... total number changes -->

   <div class="link">
   </div>
</div>
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted
$(".parent div").not(".link").replaceWith(data);
link|improve this answer
I'm accepting this answer because it's the simplest one. Thank you all. – Mohamad Jul 30 '11 at 15:20
feedback
$(".parent").find("div").not(".link").remove();
$(".parent").prepend("<div>hello world</div>");
link|improve this answer
feedback

You could do:

 $('.parent div').filter(':not(.link)').wrapAll('<div>').parent('div').html('data');

fiddle here http://jsfiddle.net/nicolapeluchetti/N4FGX/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.