HTML5 autofocus Attribute
HTML5 threw a whole bunch of awesomeness at us. Tasks we accomplished with JavaScript and Flash, like basic form validation, INPUT placeholders, client side file naming, and audio/video, can now be completed using basic HTML. Another simple functionality HTML now allows us is auto-focusing on elements upon page load; this is accomplished using the autofocus attribute.
The code is as simple as it gets:
<!-- These all work! -->
<input autofocus />
<button autofocus>Hi!</button>
<textarea autofocus></textarea>
When the autofocus attribute is present, the INPUT, TEXTAREA, or BUTTON element is automatically selected upon page load. I experimented with display elements (H1 tag) and a tabIndex of 0, but autofocus did not work for them.
This attribute is especially useful on pages whose main purpose is collecting information, like Google's homepage (search is the use 99% of the time) or even an online guided installer (like WordPress' installer). And best of all -- no JavaScript needed!
![Introducing MooTools Templated]()
One major problem with creating UI components with the MooTools JavaScript framework is that there isn't a great way of allowing customization of template and ease of node creation. As of today, there are two ways of creating:
new Element Madness
The first way to create UI-driven...
![Facebook Open Graph META Tags]()
It's no secret that Facebook has become a major traffic driver for all types of websites. Nowadays even large corporations steer consumers toward their Facebook pages instead of the corporate websites directly. And of course there are Facebook "Like" and "Recommend" widgets on every website. One...
![Create Twitter-Style Buttons with the Dojo Toolkit]()
I love that JavaScript toolkits make enhancing web pages incredibly easy. Today I'll cover an effect that I've already coded with MooTools: creating a Twitter-style animated "Sign In" button. Check out this five minute tutorial so you can take your static...
![Telephone Link Protocol]()
We've always been able to create links with protocols other than the usual HTTP, like mailto, skype, irc ,and more; they're an excellent convenience to visitors. With mobile phone browsers having become infinitely more usable, we can now extend that convenience to phone numbers:
The tel...
For those interested, autofocus is currently not supported in Safari Mobile for iOS 5.x or Android’s browser app (2.3 and below, not sure on support in newer versions).
Information found at http://wufoo.com/html5/attributes/02-autofocus.html
Also READONLY is a funny attribute for input, it disallow the input to be writtable.
I just did a little testing and Chrome actually focuses on elements that have the autofocus attribute and are injected via JavaScript… But FF and IE don’t.
Not sure if that’s part of the spec or not, but it’s there.
You’re always full of “nice to know” stuff that we can use in our everyday coding. Thanks!
The implementation of the feature is a little “magical” in some browsers, but I hope it will be all right in future.
In fact, it’s even simpler than that! Rather than using an attribute you can use a flag with the HTML5 doctype:
Hi!
In fact, it’s even simpler than that! Rather than using an attribute you can use a flag with the HTML5 doctype:
Hi!
Sorry, tried wrapping it in code tag but to no avail!
The historical problem with autofocus is that it acts on “load” event. If in the meanwhile you started interacting with the browser url bar or any other input in the page, it moves the focus away and you gonna end up writing shenanigans. As example, you start typing your password in input 2 but the page set autofocus on input 1 … when the focus is stolen from input 2 you might end up writing amd showing to everyone your password without realizing the focus changed.
Unless browsers vendors implement a way to prevent this, as soon as the user start interacting with the page the autofocus attribute should be removed.
!function(html, autofocus){ function drop() { for(i = 0; i < event.length; html.removeEventListener(event[i++], drop, true)); document.querySelector( "[" + autofocus + "=" + autofocus + "]" ).removeAttribute(autofocus); } for(var event = "touchstart mousedown scrool mousewheel".split(" "), // etc i = 0; i < event.length; i++ ) { html.addEventListener(event[i], drop, true); } }(document.documentElement, "autofocus");or something like that …
However I personally don’t like autofocus on certain sites – and it especially annoy me at Google’s homepage – because it messes up a possibility to return to previous page with the [backspace].
Alt + Left/Right
Hope Gnome would accept the same shortcuts…
@Andrea Giammarchi – which browsers in your opinion implement autofocus in onload? Tried in FF, Chrome and Opera, autofocus activates immediately. IE doesn’t support autofocus at all. So I’m curious to know which browser implements it incorrectly that would require your workaround.
Rusty, try http://caniuse.com
Little tips like this make a huge difference in day-to-day development!
Hi,
I have an input type=number, which should be focused when the page loads…it works just fine in my desktop browser, but in my mobile device, it doesn’t! I mean, once the page loads, it should focus the input and show the virtual(touchable) keyboard(better fit for numbers), but the keyboard is not shown!
even if I try to focus it via javascript using the page load event, it doesn’t work :/
the weird thing is that, if I change the input type to text, it works!
any idea?!
Hi
Has anybody ever had the need to change the focus of an input field on load? If, have you considered that the form could have been badly designed?
Bye
Note for the security pen testers (like I’m), the combination of onfocus + autofocus open a new territory for XSS’s attacks
Sorry, my badx2! Let’s try again …
I’m looking for a solution to this dilemma …
When autofocus is used on a form input element on a one-page site (using section navigation), autofocus is never implemented (or should I say “is lost”) because the user changed the focus when he clicked a menu tag in the header …
HTML
autofocusattribute is normally applied to form first input element to attract user’s for input or get the focus.http://www.thesstech.com/tryme?filename=autofocus
autofocusontextareais not working in Firefox it seems..!! Any idea why?Not sure why sometimes it does not work on Chrome :-(.
Woot! This is indeed awesomeness!