https://github.com/oakmac/javascript-rendering-exercises
Exercises rendering HTML from data using JavaScript
https://github.com/oakmac/javascript-rendering-exercises
Last synced: 3 months ago
JSON representation
Exercises rendering HTML from data using JavaScript
- Host: GitHub
- URL: https://github.com/oakmac/javascript-rendering-exercises
- Owner: oakmac
- License: isc
- Created: 2020-03-11T00:10:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T16:12:22.000Z (about 6 years ago)
- Last Synced: 2025-05-07T10:14:57.435Z (about 1 year ago)
- Language: JavaScript
- Size: 2.03 MB
- Stars: 0
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# JavaScript Rendering Exercises
JavaScript data can be mapped 1-to-1 with HTML structure. This process is often
called "rendering".
## Instructions
Look at each JavaScript file located in the `js/` folder and follow the
instructions to make the buttons on the page render HTML when they are clicked.
You can see some example images of the expected result in the
`solution_examples/` folder.
## Learning Objectives
- Using JavaScript functions and data to generate HTML
- DOM manipulation
- Event handlers
## License
[ISC License](LICENSE.md)
Credit to [Adam Szaruga](https://github.com/adamszaruga) for the initial content of these exercises.
Many thanks to [Aubrey Snider](https://github.com/aurmer) for porting over the exercises into this repo.