Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Should all other elements between the 3 divs also should be wrapped? – Arun P Johny Jul 28 '11 at 9:22

2 Answers

up vote 5 down vote accepted

That's possible with wrapAll(). You can use nextUntil(), andSelf() and add() to match the elements between #div1 and #div12, inclusive:

$("#div1").nextUntil("#div12").andSelf().add("#div12")
          .wrapAll("<div class='wrapped'></div>");
share|improve this answer
2  
This does not work if there is any plain text in between the divs, see my example here: jsfiddle.net/alp82/PZvEd – Alp Jul 28 '11 at 9:32
@Alp, good point. Questioner, would this be a problem in your case? – Frédéric Hamidi Jul 28 '11 at 9:40
Hmmm, actually the wrapping doesnt work, it only takes one element into its wrap – benhowdle89 Jul 28 '11 at 9:41
@ben, strange, it works for me in this fiddle. Which browser are you using? – Frédéric Hamidi Jul 28 '11 at 9:48
To fix the plain text issue, you can wrap any text nodes before running the code in the answer above. See jsfiddle.net/PZvEd/3 – g_thom Jul 28 '11 at 10:43
var wrapper = $('<div></div>').addClass('wrapped');
var parent = $('#div1').parent();
wrapper.append($('#div1, #div4, #div12')).appendTo(parent);

You can get rid of the wrapper var if you prefer. Here's a jsFiddle: http://jsfiddle.net/DHTd6/

share|improve this answer
Did you link to the correct Fiddle? – jensgram Jul 28 '11 at 10:03
@jensgram heh. no I didn't. That fiddle was for a different question. Thanks for pointing that out. – Phil Jul 28 '11 at 10:09

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.