JavaScript
4
Вклад в тег
while ($('.sub-menu > .sub-rubriс').length > 0) {
$('.sub-menu > .sub-rubriс:first')
.nextUntil('.sub-rubriс')
.add($('.sub-menu > .sub-rubriс:first'))
.wrapAll('<div class="sub-rubrik-wrap"></div>');
}
var s = '';
$('.tile').each(function() {
s += $(this).find('.tile__name').text() + ': "';
var s1 = '';
$(this).find('.tile__list span').each(function() {
s1 += $(this).text() + ',';
})
s += s1.slice(0, s1.length-1) + '", ';
});
s = s.slice(0, s.length-2);
alert(s);