Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sahilcreate/mdn-dom-manipulation-exercise
https://github.com/sahilcreate/mdn-dom-manipulation-exercise
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sahilcreate/mdn-dom-manipulation-exercise
- Owner: Sahilcreate
- Created: 2024-03-16T12:08:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-17T03:59:51.000Z (10 months ago)
- Last Synced: 2024-11-16T06:27:47.714Z (2 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mdn-dom-manipulation-exercise
In this challenge we want to make a simple shopping list example that allows you to dynamically add items to the list using a form input and button. When you add an item to the input and press the button:
-The item should appear in the list.
-Each item should be given a button that can be pressed to delete that item off the list.
-The input should be emptied and focused ready for you to enter another item.[link](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Manipulating_documents#active_learning_a_dynamic_shopping_list)