This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // jQuery | |
| // Скрыть все элементы с классом .box | |
| $(".box").hide(); | |
| // Без jQuery | |
| // Запускаем цикл по массиву с вложенными элементами в блоке .box, чтобы применить к ним метод/функцию | |
| document.querySelectorAll(".box").forEach(box => { box.style.display = "none" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* jQuery */ | |
| // Выбрать все эл-ты с классом .box | |
| $(".box"); | |
| /* js */ | |
| // Выбирает 1-й элемент с классом box | |
| document.querySelector(".box"); | |
| // …или выбрать все элементы с классом .box |
NewerOlder