HTMLCollection Loop
У меня проблема с циклом в HTMLCollection, я хотел бы получить дочерний элемент, но он возвращается как "неопределенный"...:
var thumb = document.getElementsByTagName('pi-elem-search'),
tc = document.getElementsByClassName('taskCard'),
mutationConfig = { childList: true };
console.log(thumb);
console.log(thumb[0]);
for (var i=0; i < thumb.length; i++) {
console.log(thumb[i]);
};
Результаты console.log():
########################################## START ################################################
HTMLCollection []
0: pi-elem-search.ng-isolate-scope
length: 1
__proto__: HTMLCollection
undefined
########################################## END ################################################