Forms
Table of Contents
Q: What is a form and why is a form useful?
What is a Form?
A form is a collection of inputs that can be filled out by a user to submit a collection of data.
Q: What kinds of data might we collect in a form?
Q:When should we use a form? For all user input?
Click a button to pop open a tab with more data - use a
button
, not aform
A text input that filters the list of data shown - use an
input
, but not a fullform
A link that takes the user to a new location - use an
anchor
or abutton
, not aform
Registering a new user with a name, password, and user details - use a
form
!
Form Basic Structure
Forms are made up of a few parts:
<form>
: the container for the formh2 (or other header)
: A heading to describe your form<label>
: A label for each input<input>
: A place for the user to enter some data. There are many types (text, radio, checkbox, etc...)<button>
: A button to submit the form
Below is a full example! For now, just focus on the Elements that are in the example (form
, h2
, label
, input
, button
)
There are a lot of attributes to learn, particularly for label
and input
. We'll go over them but here are the essential new ones that we'll cover:
form
Elements have anaria-label
for accessibilityinput
Elements have atype
attribute to determine the kind of input (text, number, color, etc...)input
Elements have aname
attribute which will be used to extract data from the forminput
Elements MUST have anid
attributelabel
Elements MUST have afor
attribute equal to theinput
Element'sid
. This connects them.
Inputs
Inputs are where users can input their data. Each input
Element has a type — the basic inputs are "text"
or "number"
but there are many more cool ones.
Here is an example (note we're missing label
s!)
💡 Best Practice: Use
kabob-case
forid
andcamelCase
forname
(we'll learn why in a moment)
Some other types of inputs Elements (other than the literal input
tag) are the select
and textarea
(and technically buttons
).
Inputs must have a name
attribute. We'll use those later when we are getting data from the form when it is submitted.
Accessibility: Labels and aria-label
Right now, our form is just a bunch of inputs. But how does the user know which input is for which value? Well, for one, we could add a header:
But that only helps our seeing users! When designing websites, we must design for ALL of our users.
Labels are crucial for our non-seeing users and accessibility. They tell screen readers what the purpose of an element is. There are two kinds of labels that we'll use:
The
aria-label
/aria-labelledby
attribute — describes the purpose of aform
(or really of any element).The
<label>
element — describes the purpose of an<input>
element.
A few notes about aria-lablledby
Accessible Rich Internet Applications (ARIA) is a set of roles and attributes that define ways to make web content and web applications more accessible to people with disabilities.
We added an
id
to theh2
elementWe added the
aria-lablledby
attribute to theform
element so that screen readers know to use theh2
element text as the aria label.
Here are a few notes about the <label>
element:
Connect the
<label>
to the<input>
with thefor
attribute. It should be the same as the input'sid
:Labels make it so that clicking a label will focus the input or check the checkbox.
Labels help our seeing users too by describing the input!
Notice that we also wrap each label
+ input
pair inside of a div
. This isn't necessary but it makes styling each pair of elements a lot easier.
Submit button
All forms should end with a submit button.
By default button
elements have a type="submit"
so you don't need to put it. But you can if you want! There are other types of buttons we'll discuss later.
Clicking the submit button (or pressing enter while focused inside a form) will fire the 'submit'
event on the form.
Our objective is to...
listen for this
'submit'
eventcreate an event handler that extracts the user input data
do something with that data! (save it in a database, show it in the UI, etc...)
Handling Form Submissions
Original Form Submissions
But first...
Originally (and still with some frameworks) form submissions actually change the page.
See this difference by filling out the form in 1/old-form/original-way.html
which redirects the user to the new page after submitting.
Q: See how the URL changes to results-page.html
? Notice the stuff appended to the end?
Old forms used a few attributes to achieve this behavior:
action
= the new page to go tomethod
="get"
or"post"
("get"
is default)."get"
means we are requesting data using the form,"post"
means we are sending data to be stored by the applicationThe form data becomes “query params” in the URL of the new page if you use
"get"
This is the “default” behavior of the forms, which is NOT what we want.
The Modern Way
Instead of having the browser take us away from the page, most modern web applications use JavaScript to change the contents of the screen WITHOUT leaving the page.
To handle a form submission with JavaScript, we will need to:
prevent the default behavior of navigating to a new page
collect the form data using
form.elements
utilize the form data in some way (maybe render it to the screen, or send it to an API)
reset the form
If these are our inputs:
Then, we can handle this form on the same page like this:
event.preventDefault()
stops the form submission from redirecting/reloading the pageevent.target
is a reference theform
element that caused the"submit"
event to occur. We'll save it in a variable since we'll reference it a lot.form.elements
is an object containing all of theinput
elements of the form (the HTMLElement, not the value), accessible using the inputname
(e.g.form.elements.username
orform.elements.age
).We can access the value of most
input
elements using the.value
property (e.g.form.elements.username.value
)Checkboxes use the
.checked
property (e.g.form.elements.isHungry.checked
).form.reset()
empties out the form!
Q: How can you improve this code so that you don't have to type out form.elements
over and over again?
FormData API
Another, potentially faster, way to get the values of a form is to use the FormData
API. It starts off the same, we have to grab the form
using event.target
:
Let's break this down:
We again store the
form
usingevent.target
We invoke the function
new FormData()
with thatform
as an argumentWe immediately take the returned value and pass it to
Object.fromEntries()
which generates an Object with our form values!
One annoying gotcha: checkboxes
When using checkboxes, you would think they'd use a true
/false
setup, but nope! They use "on"
and undefined
.
So you'll need to do a little extra work to get them to be true
/false
:
By converting the formValues.isHungry
property into a Boolean, it will be true
if the value is "on"
or false
if the value is undefined
.
Resetting
After you submit, sometimes you want to clear the form, so you can do that with form.reset()
in the js, or on the form html itself, add a button with a type of reset
Input types
On the index.html
go over the basic text inputs, but then also radio groups (with fieldsets and legends), and the select. Point out when to use them:
<input type="text">
: any open ended but short data<input type="number">
: any number, min and max can lock you in (not featured on form, just mention)<input type="radio">
: when you want to pick one of a few options<textarea>
: any open ended but long data<select>
and<option>
: when you want to pick one of a lot of options
Tracking Input and Non Submission Events
You can use an input
event on an input (or fieldset) to track the changes at a more granular level:
If you specify a type of button
on a button, it will not trigger a submit automatically. This is a pretty rare occurrence, but it's good to know!
HTML:
JS:
Last updated