HTML5 Form Elements / PDF
Sample of the pdf document :
HTML5 New Form Elements
HTML5 has the following new form elements:
- <datalist>
- <keygen>
- <output>
Note: Not all major browsers support all the new form
elements. However, you can already start using them; If they are not supported,
they will behave as regular text fields.
HTML5 <datalist> Element
The <datalist> element specifies a list of pre-defined options for an
<input> element.
The <datalist> element is used to provide an "autocomplete"
feature on <input> elements. Users will see a drop-down list of
pre-defined options as they input data.
Use the <input> element's list attribute to bind it together with a
<datalist> element.
Example
An <input> element with pre-defined values in a
<datalist>:
<input
list="browsers">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
HTML5 <keygen> Element
The purpose of the <keygen> element is to provide a secure way to
authenticate users.
The <keygen> tag specifies a key-pair generator field in a form.
When the form is submitted, two keys are generated, one private and one
public.
The private key is stored locally, and the public key is sent to the
server. The public key could be used to generate a client certificate to
authenticate the user in the future.....
Click here for Download PDF / FREE
0 commentaires: