Selecting Elements in the DOM
To change or read parts of a web page, you first need to select the elements you want to work with. JavaScript provides several methods for finding elements by ID, class, tag name, or CSS selectors.
Selected elements return Element objects (or collections) that you can then manipulate.
getElementById – Select by Unique ID
Fastest way to select a single element with an id attribute.
querySelector – Most Flexible (CSS Selector)
Returns the first element matching a CSS selector.
querySelectorAll – Get All Matches
Returns a NodeList (array-like) of all matching elements.
getElementsByClassName and getElementsByTagName
Return live HTMLCollections.
Choosing the Right Selector
- getElementById – fastest for single unique element.
- querySelector – most flexible (any CSS selector).
- querySelectorAll – when you need multiple elements.
- getElementsBy* – older methods, live collections.
Quick Quiz
Hemos revisado y comprobado los materiales, pero aún pueden existir errores. El contenido se ofrece únicamente con fines educativos, así que úsalo bajo tu propia responsabilidad y verifica con otras fuentes si es necesario.
✨ Pregunta a Lara — tu compañera de estudio con IA
Desbloquea soporte de aprendizaje personalizado. Lara puede explicar lecciones, resumir temas y responder tus preguntas — disponible desde el plan Go y superiores.
Lara te ayuda a aprender más rápido — exclusivo para los miembros ReadyTools Go, Plus y Max.


