$('.itemRow').each(function(){ const $wrap=$('<div></div>').addClass('some-class'); $(this).find('.postTitle,.postExcerpt').each(function(){ $wrap.append($(this).clone()); }).remove().end().prepend($wrap); });