/
How do we target elements using their classes?
How do we target elements using their classes?
How would we change the first element with the class “MENUmenu”.
var Elements = document.getElementsByClassName("MENUmenu");
var Menu = Elements[0];
Menu.innerHTML = "We got to target this element";
This would require some HTML with a class like this:
<html>
<body>
<p>Some example HTML</p>
<div class="MENUmenu"></div>
</body>
</html>
, multiple selections available,
Related content
How to use the class attribute of HTML elements.
How to use the class attribute of HTML elements.
More like this
Class Attribute
Class Attribute
More like this
Use of classes and divisions in CSS
Use of classes and divisions in CSS
More like this
DOM Element
DOM Element
More like this
Change CSS property of a DOM element
Change CSS property of a DOM element
More like this
How do I change the content of a DOM element?
How do I change the content of a DOM element?
More like this