Reputation: 583
I have a list of elements (divs) preseded by a H3 tag
<h3></h3>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<h3></h3>
<div class="item"></div>
<div class="item"></div>
etc...
Using jQuery, I'd like to group every 3 divs (or less) followed by each h3 like this:
<h3></h3>
<div class=row>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
<div class=row>
<div class="item"></div>
</div>
<h3></h3>
<div class=row>
<div class="item"></div>
<div class="item"></div>
</div>
I tried a solution proposed here: Insert <div> for every 5 elements using Javascript but it obviously grouped ALL the divs. I also tried using ~ selector without any success:
var a = $('h3 ~ div.item');
for( var i = 0; i < a.length; i+=3 ) {
a.slice(i, i+3).wrapAll('<div class="row"></div>');
}
Any help will be highly appreciated.
Upvotes: 7
Views: 6706
Reputation: 18078
You could do something like this:
(function(c, h, s, $g, n) {
$(c).find([h,s].join()).each(function() {
if ($(this).filter(h).length || $g.find(s).length == n) {
$g = $g.clone().empty().insertAfter(this);
}
$g.append($(this).not(h));
});
})(document, 'h3', '.item', $('<div class="itemGroup"/>'), 3);
If your elements are contained in a specific container, then pass the container's selector (eg. "#myContainer") instead of document
.
Upvotes: 1
Reputation: 146219
I've ended up with this and it's working
$(function(){
var h3=$('h3');
h3.each(function(){
var divs=$(this).nextUntil('h3');
var row_wreapper=$('<div></div>');
while(divs.length)
{
var grp=divs.splice(0, 3);
var row=$('<div class="row"></div>');
$(grp).each(function(){
row.append($(this));
});
row_wreapper.append(row);
}
$(this).after(row_wreapper.html());
});
});
DEMO or with a little extra checking of item
class DEMO.
Or
$(function(){
var h3=$('h3');
h3.each(function(){
var divs=$(this).nextUntil('h3');
var row_wreapper=$('<div></div>');
while(divs.length)
{
var grp=divs.splice(0, 3);
var row=$(grp).wrapAll('<div class="row"></div>');
if(row.children().length) row_wreapper.append(row);
}
$(this).after(row_wreapper.html());
});
});
Upvotes: 4
Reputation: 87073
Try this. A simple solution..
var h3s = $('h3'); // caching all h3 tags
// looping over h3 tags
$.each(h3s, function(i, hs) {
// selecting div.item between two h3
// for example
// div.item between this (current h3) and h3:eq(1) (next h3) and so on
var divs = $(this).nextUntil($('h3').eq(i+1), 'div.item');
// looping with divs
$.each(divs, function(i, el) {
// checking for div.item
// to group for wrapping
if(i % 3 == 0) {
divs.slice(i , i+3).wrapAll('<div class="row">');
}
});
});
Related refs:
Upvotes: 2
Reputation: 50797
There is a plugin here that I use when I want to wrap, just because it's clean and allows me to do amazing things. || You can find the source for the wrapper in plain-text here
The only issue is that -- because of your DOM we have to do some structuring of all the items and group them, before we can iterate over those lists.
We'll do this first by ->
$.each($('h3'), function(i,v){
$(v).nextUntil($('h3')).wrapAll('<div class="row-container"></div>');
});
.nextUntil()
is jQuery 1.6+, so hopefully there's no restrictions there.
Now, with the plugin above that I've linked, we can reference it and have it wrap objects within each new row-container
.
$.each($('.row-container'), function(i,v){
$(v).nwrapper({
wrapEvery : 3,
defaultClasses : false,
extraClasses: ['row']
});
});
The proof is in the pudding so here's the jsFiddle
Upvotes: 2