Handling Forms
Explore how to set up and handle forms in a Next.js app for an interactive Giphy search experience. Learn to manage input values with onChange events, prevent default form submission behavior, and style your form for better usability while integrating these techniques into your React component.
We'll cover the following...
Setting up the keyword search form
First, you need to declare your form with the form tag in your JSX. You want your search upfront and center when a user loads the site. For this reason, you will place your <form> tag and its contents in the index.js file, which renders your homepage, so place an input tag inside the form tag.
onChange event
Now you can add an onChange attribute to the input tag. This listens to any changes to that element. Specifically, you want to know when the text being typed in the input is changed.
Inside the onChange event, you will place a console.log to ...