You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
485 B
485 B
DOM_Intro_Exercise
Practice manipulating the DOM!
In a separate JS file:
When the page loads:
-
change the greeting from "Hello, There!" to "Hello, World!".
-
set the background color of each
<li>
toyellow
.
Afterwards:
-
add the class of
selected
to an<li>
when it is clicked. -
change the image to be the most recently clicked food item.
-
when the reset button is clicked - remove the
selected
class from each<li>
and change the image topanic.jpeg
.