Learn DOM Manipulation in JS
Use JS to make web pages do <stuff> with the DOM API.
Imo for learning DOM manipulation the best way is to learn a few basic controls, then go build something. When you get stuck (you wanna do something but you don't know how), just Google it and put "mdn" after your search query (like "how to set html attribute with js mdn") and you'll usually find exactly what you need
Mozilla have guides for almost everything you can do in a browser with html/css/js
https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents
Thanks to @kevinpowell for the following;
Chris Ferdinandi has a DOM manipulation pocket guide. Video version of it is paid, but the PDF version is free
https://vanillajsguides.com/dom-manipulation/
Thanks to @b1mind for the following;
https://javascript.info/document is a decent resource also
0 Replies