Wrap every 3 divs in a div
Solution 1:
You can do it with .slice()
, like this:
var divs = $("div > div");
for(var i = 0; i < divs.length; i+=3) {
divs.slice(i, i+3).wrapAll("<div class='new'></div>");
}
You can try out a demo here, all we're doing here is getting the elements you want to wrap and looping through them, doing a .wrapAll()
in batches of 3 then moving to the next 3, etc. It will wrap 3 at a time and however many are left at the end, e.g. 3, 3, 3, 2 if that's the case.
Solution 2:
I've written a generic chunk function that makes this quite easy to do:
$.fn.chunk = function(size) {
var arr = [];
for (var i = 0; i < this.length; i += size) {
arr.push(this.slice(i, i + size));
}
return this.pushStack(arr, "chunk", size);
}
$("div > div").chunk(3).wrap('<div class="new"></div>');
$.fn.chunk = function(size) {
var arr = [];
for (var i = 0; i < this.length; i += size) {
arr.push(this.slice(i, i + size));
}
return this.pushStack(arr, "chunk", size);
}
$("div > div").chunk(3).wrap('<div class="new"></div>');
div > div {
width: 50px;
height: 50px;
background: blue;
margin: 2px;
float: left;
}
div.new {
background: red;
height: auto;
width: auto;
overflow: auto;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
Solution 3:
The Plugin
$(function() {
$.fn.EveryWhat = function(arg1) {
var arr = [];
if($.isNumeric(arg1)) {
$.each(this, function(idx, item) {
var newNum = idx + 1;
if(newNum%arg1 == 0)
arr.push(item);
});
}
return this.pushStack(arr, "EveryWhat", "");
}
});
How to use it.
Call EveryWhat()
on the element and put in a number for every element you would like to collect.
$("div").EveryWhat(2).wrapInner('<div class="new" />');
wrapinner's quotes should have a properly formatted <div class="new" />
with a class and closing tag. Stackoverflow prevents me from showing what that looks like but here is a link of a self closing div.
What it should look like
That will wrap every other number that you specified. I'm using jquery 1.8.2. so remember use selector call EveryWhat(3)
and a number for every time. Of course putting it at the bottom of the page or wrapping it in a
$(document).ready(function() {
//place above code here
});
You could use every nth and then .wrapInner('<div class="new" />')
for the same results.