Lecture Goals
- Explain the importance of event handling in modern web applications
- Explain how callback functions are used with event listeners
- Observe how to add a form to a webpage using HTML and JavaScript
- Observe how onSubmit events are used to receive information from Users via forms
- Explain the purpose of the
.preventDefault()
method
- Use MDN to discover and interact with JavaScript events
The Setup

The Payoff

In Practice
- Identify event type
- Identify event target
- Add event listener for target and specify type (as first argument)
- add logic to handle the event to event handler callback (as second argument)
The Click Event
- Why would
addEventListener
be considered a higher order function?
- In which case is
handleClick
behaving as an event handler? Line 4 or line 8? Why?
The Submit Event (with preventDefault)
Let’s Code!
- Users should be able to delete books by clicking the delete button at the bottom of the book card
- Users should be able to click the New Book button to display the form to add a new book
- Users should be able to hide the New Book form by clicking the button again or hitting the Escape key on their keyboard
- Users should be able to add a book by filling in the form at the top of the page (the book they add should appear in the DOM)
Ideas for Additional Practice
- Try using keyboard events to:
- add keyboard shortcuts to your app
- simulate moving a player in an in browser game (using the arrow keys to move a character around the screen)
- Try using mouse events to reveal parts of the screen as the cursor moves over them (and then hide them again when the cursor leaves)
- Try adding a live updating search feature to an input (while you type in the input, the search results display only matches to what you’ve typed)
- Build your own spoiler (a clickable summary that will display details below when clicked and hide them again when clicked again)