I am trying to get an href array from this page http://vm1.culture.ru/abramtsevo/catalog , but this is not how it goes:
$('.catalog__body__items .catalog__body__items__item__image').find('a[href]').each(function() { hrefs.push($(this).attr('href')); }) and so does not work:
$('.catalog__body__items .catalog__body__items__item__image').find('a[href]').each(function() { hrefs.push(this.href); }) Only I receive an array with a tags (with attributes).
