-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Querying the DOM #7
Conversation
Also includes link to README from Interacting with the User; exercise titles
Covers querySelector and querySelectorAll for finding elements by id, class, tag name, and name attribute. Also includes an exercise to learn the getElement(s)ByX methods.
And another one for ya, @zspencer. |
|
||
To complete the exercises, open `page.html` in your browser and then open the | ||
[browser's development console](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers). | ||
Type your JavaScript code directly into the console. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have an exercise for working with the browser JS console planned?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that's listed as Level 4 of the "Syntax and Idioms" unit #1
Overall I think this is 👍 G-R-A-T-E. A couple points of general feedback:
|
Thanks for the feedback! Merging... |
Exercises to cover selecting elements on the DOM.
Covers querySelector and querySelectorAll for finding elements by id,
class, tag name, and name attribute.
Also includes an exercise to learn the getElement(s)ByX methods.
Does not cover manipulating the DOM or reading properties of the elements. That will be a separate set of exercises.