Answers for "user wildcard cards in queryselectorall"

0

user wildcard cards in queryselectorall

var nodeList = document.querySelectorAll('[aria-label^="Important_foo"]');
nodeList.forEach(node=> { console.log(node.getAttribute("aria-label"))});
Posted by: Guest on June-27-2021

Browse Popular Code Answers by Language