Здравствуйте!
Подскажите, пожалуйста, почему возникает ошибка
tours_list.forEach is not a function?
var tours_list = document.querySelectorAll(".item-tour-pay-list > .item-tour-pay-inform ");
tours_list.forEach(function(tours, t) {
country = tours.querySelectorAll(".item-tour-title-block small");
price = tours.querySelectorAll(".block-side .price");
for (var i = 0; i < country.length; i++) {
if(country[i].textContent.indexOf('Брюки') !== -1){
var inputD = country[i].textContent;
for (var l = 0; l < price.length; l++){
console.log(inputD+' '+price[i].textContent );
}
}
}
t++;
})