HTML5 form attributes
There are 14 new attributes that we’ll be looking at in this article.
placeholder
autofocus
autocomplete
required
pattern
list
multiple
novalidate
formnovalidate
form
formaction
formenctype
formmethod
formtarget
placeholder
First up is the
placeholder
attribute, which allows us to set placeholder text as we would currently do in HTML4 with the value
attribute. It should only be used for short descriptions. For anything longer, use the title attribute. The difference from HTML4 is that the text is only displayed when the field is empty and hasn’t received focus. Once the field receives focus (e.g., you click or tab to the field), and you begin to type, the text simply disappears.
Let’s have a look at how to implement the
placeholder
attribute.<input type="text" name="user-name" id="user-name"
placeholder="at least 3 characters">
But as control get focus, placeholder text disapear.
Browsers that don't support the placeholder attribute ignore it, so it wont render.autofocus
autofocus does exactly what it says on the tin. Adding it to an input automatically focuses that field when the page is rendered. As with
placeholder
, autofocus
is something that we used JavaScript for in the past.<input type="text" name="first-name" id="first-name" autofocus>
Like
placeholder
, browsers that don’t support the autofocus
attribute simply ignore it.autocomplete
Theautocomplete
attribute helps users complete forms based on earlier input. The attribute has been around since IE5.5 but has finally been standardized as part of HTML5. The default state is set to on. This means that generally we won’t have to use it. However, if you want to insist that a form field be entered each time a form is completed, you would implement it like so:<input type="text" name="tracking-code" id="tracking-code" autocomplete="off">
The autocomplete
state on a field overrides any autocomplete
state set on the containing form
element.required
Therequired
attribute doesn’t need much introduction; like autofocus
, it does exactly what you’d expect. By adding it to a form field, the browser requires the user to enter data into that field before submitting the form. This replaces the basic form validation currently implemented with JavaScript, making things a little more usable and saving us a little more development time. required
is a Boolean attribute, like autofocus
. Let’s see it in action.
<input type="text" id="given-name" name="given-name" required>
pattern
Thepattern
attribute is likely to get a lot of developers very excited (well, as excited as you can get about form attributes). It specifies a JavaScript regular expression for the field’s value to be checked against. pattern
makes it easy for us to implement specific validation for product codes, invoice numbers, and so on. The possibilities for pattern
are wide-ranging, and this is just one simple example using a product number.<label>Product Number:<input pattern="[0-9][A-Z]{3}" name="product" type="text" title="Single digit followed by three uppercase letters."/>
</label>
list and the datalist element
Thelist
attribute enables the user to associate a list of options with a particular field. The value of the list
attribute must be the same as the ID of a datalist
element that resides in the same document. The datalist
element is new in HTML5 and represents a predefined list of options for form controls. It works in a similar way to the in-browser search boxes that autocomplete as you type.list
and datalist
are combined:<label>Your favorite fruit:<datalist id="fruits">
<option value="Blackberry">Blackberry</option>
<option value="Blackcurrant">Blackcurrant</option>
<option value="Blueberry">Blueberry</option>
<!-- … -->
</datalist>
If other, please specify:
<input type="text" name="fruit" list="fruits">
</label>
By adding a
select
element inside the datalist
you can provide superior graceful degradation than by simply using an option element.
<label>Your favorite fruit:<datalist id="fruits">
<select name="fruits">
<option value="Blackberry">Blackberry</option>
<option value="Blackcurrant">Blackcurrant</option>
<option value="Blueberry">Blueberry</option>
<!-- … -->
</select>
If other, please specify:</datalist>
<input type="text" name="fruit" list="fruits">
</label>
multiple
We can take ourlist
s and datalist
s one step further by applying the Boolean attribute multiple
to allow more than one value to be entered from the datalist
. Here is an example.<label>Your favorite fruit:<datalist id="fruits">
<select name="fruits">
<option value="Blackberry">Blackberry</option>
<option value="Blackcurrant">Blackcurrant</option>
<option value="Blueberry">Blueberry</option>
<!-- … -->
</select>
If other, please specify:</datalist>
<input type="text" name="fruit" list="fruits" multiple>
</label>
multiple
isn’t exclusively for use with datalist
s, though. A further example for multiple
might be for email addresses when sending items to friend or the attachment of files, as shown here:<label>Upload files:<input type="file" multiple name="upload"></label>
novalidate and formnovalidate
Thenovalidate
and formnovalidate
attributes indicate that the form shouldn’t be validated when submitted. They are both Boolean attributes. formnovalidate
can be applied to submit or image input types. The novalidate
attribute can be set only on the form
element.An example use case for the
formnovalidate
attribute could be on a “save draft” button, where the form has fields that are required for submitting the draft but aren’t required for saving the draft. novalidate
would be used in cases where you don’t want to validate the form but do want to take advantage of the more useful user interface enhancements that the new input types offer.The following example shows how to use
formnovalidate
:
<form action="process.php">
<label for="email">Email:</label>
<input type="text" name="email" value="gordo@example.com">
<input type="submit" formnovalidate value="Submit">
</form>
And this example shows how to use novalidate
:
<form action="process.php" novalidate>
<label for="email">Email:</label>
<input type="text" name="email" value="gordo@example.com">
<input type="submit" value="Submit">
</form>
form
Theform
attribute is used to associate an input
, select
, or textarea
element with a form. Using form
means that the element doesn’t need to be a child of the associated form and can be moved away from it in the source. The primary use case for this is that input buttons that are placed within tables can now be associated with a form.<input type="button" name="sort" form="sort">
formaction, formenctype, formmethod, and formtarget
Theformaction
, formenctype
, formmethod
, and formtarget
attributes each have a corresponding attribute on the form
element, which you’ll be familiar with from HTML4, so let’s run through each of them briefly. These new attributes have been introduced primarily because you may require alternative actions for different submit buttons, as opposed to having several forms in a document.formaction
formaction
specifies the file or application that will submit the form. It has the same effect as the action
attribute on the form
element and can only be used with a submit or image button (type="submit"
or type="image"
). When the form is submitted, the browser first checks for a formaction
attribute; if that isn’t present, it proceeds to look for an action
attribute on the form.<input type="submit" value="Submit" formaction="process.aspx">
formenctype
formenctype
details how the form data is encoded with the POST method type. It has the same effect as the enctype
attribute on the form element and can only be used with a submit or image button (type="submit"
or type="image"
). The default value if not included is application/x-www-formurlencoded
.<input type="submit" value="Submit"
formenctype="application/x-www-form-urlencoded">
formmethod
formmethod specifies which HTTP method (GET, POST, PUT, DELETE) will be used to submit the form data. It has the same effect as the method attribute on the form element and can only be used with a submit or image button (type="submit"
or type="image"
).<input type="submit" value="Submit" formmethod="POST">
formtarget
formtarget
specifies the target window for the form results. It has the same effect as the target attribute on the form
element and can only be used with a submit or image button (type="submit"
or type="image"
).<input type="submit" value="Submit" formtarget="_self">
Comments
Post a Comment