HTML5 Added Several New Input Types
HTML5 Added Several New Input Types
You must remember to set a name for your input; otherwise, nothing will be submitted.
Search Options
The <datalist> tag can be used to define a list of pre-defined options for the search field:
<input id="car" type="text" list="colors" />
<datalist id="colors">
<option value="Red">
<option value="Green">
<option value="Yellow">
</datalist>
Custom Names
Custom names can be used for tables as well. You can shorten the join statements by
giving the tables "nicknames":