10
Cosa restituiscono i metodi querySelectorAll e getElementsBy *?
Do getElementsByClassName(e funzioni simili come getElementsByTagNamee querySelectorAll) opera la stessa getElementByIdo se invece restituiscono un array di elementi? Il motivo per cui lo chiedo è perché sto cercando di cambiare lo stile di tutti gli elementi usando getElementsByClassName. Vedi sotto. //doesn't work document.getElementsByClassName('myElement').style.size = '100px'; //works document.getElementById('myIdElement').style.size = '100px';