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>