This page is Not Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

autofocus

Summary

Provides a way to direct a user to a specific field when a document loads.

Applies to [HTMLInputElement](/html/elements/input)
This is the one of the important attribute introduced in HTML5 for UX. When used on an element, focus is set on that element on page load or when its dialog is shown (such as when a modal window is shown).

This can provide both direction and convenience for a user, reducing the need to click or tab to a field when a page opens.

This attribute is true when present on an element, and false when missing. Only one element on each page can have the autofocus field.

Examples

<input id="search_box" autofocus>

Related specifications

HTML5
W3C Candidate Recommendation

See also

Related articles

HTML

External resources

Related pages

Attributions