diff --git a/README.md b/README.md index 9e51a85..edb8fc6 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,19 @@ Practice manipulating the DOM! -In the Chrome JS console practice selecting different elements on the page and doing something with it. +In a separate JS file: -For example: +When the page loads: -- When you click the word "milk", have an alert pop up that says "Milk" -- When you click the word "wine" make the letters turn red -- Can you think of any other fun events to make happen? +- change the greeting from "Hello, There!" to "Hello, World!". + +- set the background color of each `
  • ` to `yellow`. + +Afterwards: + +3. add the class of `selected` to an `
  • ` when it is clicked. + +4. change the image to be the most recently clicked food item. + +5. when the reset button is clicked - remove the `selected` class from + each `
  • ` and change the image to `panic.jpeg`. \ No newline at end of file