#109921
Markov
Keymaster

Hi,

You can use document.querySelectorAll(‘smart-tree-item’); and loop through the collection of nodes


const items = document.querySelectorAll('smart-tree-item');

[].forEach.call(items, function(item) {
  // do whatever
});

Regards,
Markov