autofocus Attribute :
Definition and Usage
The autofocus attribute is a boolean attribute.
When present, it specifies that an <input> element should automatically get focus when the page loads.
Differences Between HTML 4.01 and HTML5
The autofocus attribute is new in HTML5.
Differences Between HTML and XHTML
In XHTML, attribute minimization is forbidden, and the autofocus attribute must be defined as <input autofocus="autofocus" />.
| Example | ||
|
<form id="form1"> First name:<input type="text" name="fname" ><br /> E-mail: <input type="email" name="email" autofocus><br /> <input type="submit" value="form1" > </form> |
code | |
| output | ||