diff --git a/README.md b/README.md index 66fc8a772a..94ca7779b8 100644 --- a/README.md +++ b/README.md @@ -27,22 +27,22 @@ Do not **move or rename any files** in this project. The website's source files * [ ] Using your [index.js file](src/index.js), create [event listeners](https://developer.mozilla.org/en-US/docs/Web/Events) of at least 10 _different_ types. You must Use your creativity to make the Fun Bus site more interactive. For example you could change colors, animate objects, add DOM elements, remove them, etc. * [ ] Here are some event types you could try to use: - * [ ] `mouseover` - * [ ] `keydown` - * [ ] `wheel` - * [ ] `load` + * [x] `mouseover` + * [x] `keydown` + * [x] `wheel` + * [x] `load` * [ ] `focus` * [ ] `resize` - * [ ] `scroll` + * [x] `click` * [ ] `select` - * [ ] `dblclick` + * [x] `dblclick` * [ ] `drag / drop` Note: Drag and drop is a bit more advanced than the others. It's not actually a single type of event but several types that need to work together. ### Use preventDefault -* [ ] Find a usecase for preventDefault. For example, you could prevent a link from navigating when clicked, or to navigate somewhere surprising. +* [x] Find a usecase for preventDefault. For example, you could prevent a link from navigating when clicked, or to navigate somewhere surprising. ## Submission Format diff --git a/src/index.html b/src/index.html index 3fe4e1214f..6ba371eabd 100644 --- a/src/index.html +++ b/src/index.html @@ -13,9 +13,10 @@