Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 10: Utilizing Forms with JavaScript!
Instruction
Making the Job Easier
In the code we are about to build, we will use the standard JavaScript and DOM APIs to do all the work we need. The features we plan to use are the following:
- classList
- addEventListener()
- NodeList.forEach()
- querySelector() and querySelectorAll()
Building Event Callbacks
The groundwork is done. We can now start to define all the functions that will be used each tim...