jQuery(function ( $ ) { var $div = $('div'); $div.each(function (i, el) { if ( i % 5 === 0 ) { $div.slice(i, i+5).wrapAll('<div />'); } }); });