forked from bloominstituteoftechnology/DOM-I
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# DOM I | ||
|
||
Topics: | ||
* Interacting with the DOM | ||
* Selectors | ||
* selectElementsByClassname | ||
* selectElementbyId | ||
* querySelector | ||
* querySelectorAll | ||
* NodeList | ||
* HTMLCollection | ||
|
||
## Objectives | ||
* Manipulate the DOM using JavaScript | ||
* Choose selectors for a given problem | ||
* Work with the object the different selectors return | ||
|
||
## Beginning Project | ||
* You'll be working in the `digital_timer` directory | ||
* Add your script tag into you index.html | ||
* You can open your `index.html` file in your browser to see your work, but you may also work in codepen.io first if you'd like | ||
* All your work will be done in `index.js` | ||
* Make sure to read both the `index.html` and `styles.css` files so that you know what you're working with | ||
* Organization of your code in `index.js` will be up to you. There will be suggestions provided later in the day |