https://github.com/flexbox/jquery-dom-manipulation
JQuery 101
https://github.com/flexbox/jquery-dom-manipulation
Last synced: 8 months ago
JSON representation
JQuery 101
- Host: GitHub
- URL: https://github.com/flexbox/jquery-dom-manipulation
- Owner: flexbox
- Created: 2016-03-21T12:49:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-05T15:31:45.000Z (almost 9 years ago)
- Last Synced: 2024-10-12T10:44:50.671Z (about 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jquery 101
> Use CSS selectors with jQuery
You are about to write your first `jQuery` code.
We say that we manipulate the [Document Object Model](http://en.wikipedia.org/wiki/Document_Object_Model) (`DOM`), which is
the in-memory representation of the `HTML` built by the browser. It is
a tree (root node, with children, and grand-children, etc.), and
you can:
- Traverse it to read a specific node
- Remove some nodes
- Add some nodes
## TODO
Open the `application.js` file, you will find a list of challenges to complete.
You will see that all results are failing. Solve them from top to bottom,
and hit F5 (Refresh) each time you want to check if you've solved an exercise.