An open API service indexing awesome lists of open source software.

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

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.