DOM Attributes and Styling
Learn about getting and setting attributes with DOM methods, as well as styling.
Getting and setting attributes
All HTML elements have a large number of possible attributes, such as class
,
id
, src
, and href
. The DOM has a number of methods that can be used to
get or set these attributes.
Getting an element’s attributes
The getAttribute()
method returns the value of the attribute provided as an
argument. For example, we can find out the class of the apple
element by
entering the following code into the console:
Get hands-on with 1400+ tech skills courses.