Тёмный

Learn DOM Navigation in 15 minutes! 🧭 

Bro Code
Подписаться 2,2 млн
Просмотров 15 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 19   
@BroCodez
@BroCodez 10 месяцев назад
// DOM Navigation = The process of navigating through the structure // of an HTML document using JavaScript. // .firstElementChild // .lastElementChild // .nextElementSibling // .previousElementSibling // .parentElement // .children // ---------- .firstElementChild ---------- const ulElements = document.querySelectorAll("ul"); ulElements.forEach(ulElement => { const firstChild = ulElement.firstElementChild; firstChild.style.backgroundColor = "yellow"; }); // ---------- .lastElementChild ---------- const ulElements = document.querySelectorAll("ul"); ulElements.forEach(ulElement => { const lastChild = ulElement.lastElementChild; lastChild.style.backgroundColor = "yellow"; }); // ---------- .nextElementSibling ---------- const element = document.getElementById("vegetables"); const nextSibling = element.nextElementSibling; nextSibling.style.backgroundColor = "yellow"; // ---------- .previousElementSibling ---------- const element = document.getElementById("desserts"); const prevSibling = element.previousElementSibling; prevSibling.style.backgroundColor = "yellow"; // ---------- .parentElement ---------- const element = document.getElementById("ice cream"); const parent = element.parentElement; parent.style.backgroundColor = "yellow"; // ---------- .children ---------- const element = document.getElementById("fruits"); const children = element.children; Array.from(children).forEach(child => { child.style.backgroundColor = "yellow"; });
@kosovaR7
@kosovaR7 10 месяцев назад
You have been tremendously helpfull during my learning journey in my bootcamp. Thank you so much!
@MulusewWase-r7b
@MulusewWase-r7b 2 месяца назад
Thank you so much!! I have not words dear.
@zappmen
@zappmen 10 месяцев назад
ahh finally, i watching all of your new js playlist its helpful to get me understanding js can't wait for the next content. Thank you bro😁🎉
@shafiq_ramli
@shafiq_ramli 10 месяцев назад
I still don't get it why I don't see your uploaded videos on my subscription feed. What's wrong with my RU-vid account?
@whatevero3701
@whatevero3701 10 месяцев назад
Hes pressing the button to hide all videos from subscribers you're welcum
@darkslopegaming6855
@darkslopegaming6855 10 месяцев назад
Hey Bro Code, I really enjoy your videos and I have learnt a ton from you! I was wondering if you had a patreon page or a donation page or something, cause I really want to support you!
@hunin27
@hunin27 10 месяцев назад
He supports St. Jude hospital in some of his videos so you could donate there, would be a nice act
@darkslopegaming6855
@darkslopegaming6855 10 месяцев назад
@@hunin27 Oh..okay thank you.
@xzex2609
@xzex2609 9 месяцев назад
Bro I see that you select your line to copy it on the new line , VS Code has this very useful key command that wiothout selecting duplicates the current line it's ALT+SHIFT +D i really am addicted to this way
@JarvisBaileyVA
@JarvisBaileyVA 10 месяцев назад
How did you know I was having this exact lesson TODAY?
@ravin20th
@ravin20th 10 месяцев назад
Can u tutorial VueJs!? Full course 👌
@harshjaiswal1634
@harshjaiswal1634 10 месяцев назад
Bro continue the series.
@tamilvoicestudio6745
@tamilvoicestudio6745 10 месяцев назад
Flutter course please BRO🎉🎉🎉🎉
@DKetik
@DKetik 10 месяцев назад
Bro, make tutorial for libgdx java
@kvo6307
@kvo6307 10 месяцев назад
Does anyone know when he will release the full course?
@saikikusou20
@saikikusou20 10 месяцев назад
hey bro code how about "asm" full course?
@hunin27
@hunin27 10 месяцев назад
Lol hell never publish that, that language is hard as hell
@raitaskeen
@raitaskeen 10 месяцев назад
Bro TypeScript...
Далее
How to ADD/CHANGE HTML using JavaScript 🛠️
15:33
Learn JavaScript ELEMENT SELECTORS easy! 📑
17:38
Просмотров 25 тыс.
Build this JS calculator in 15 minutes! 🖩
15:20
Просмотров 617 тыс.
React Crash Course | Learn React Quickly | In 80 Minutes
1:17:07
Learn DOM Manipulation In 18 Minutes
18:37
Просмотров 1 млн
Learn the JavaScript classList property easy! 💡
16:00
JavaScript Error handling in 9 minutes! ⚠
9:03
Просмотров 15 тыс.
Learn JavaScript DOM Traversal In 15 Minutes
14:44
Просмотров 226 тыс.
What are NodeLists in JavaScript? 📃
13:22
Просмотров 9 тыс.
Flexbox or grid - How to decide?
18:51
Просмотров 735 тыс.
Learn JavaScript CLOSURES in 10 minutes! 🔒
10:58
Просмотров 21 тыс.