I have quite a strange markup but nevertheless, i have 3 divs:
<div id="div1"></div>
<div id="div4"></div>
<div id="div12"></div>
There may be other elements in between these 3 divs but what i need to do is make sure that there is a div wrapping these 3 divs so the markup will end up like this:
<div class="wrapped">
<div id="div1"></div>
<div id="div4"></div>
<div id="div12"></div>
</div>
Is this possible using jQuery's wrap or wrapAll functions?