Skip to content

Instantly share code, notes, and snippets.

@carlosrojaso
Created May 12, 2014 07:04
Show Gist options
  • Save carlosrojaso/4daa33b7f13774058816 to your computer and use it in GitHub Desktop.
Save carlosrojaso/4daa33b7f13774058816 to your computer and use it in GitHub Desktop.
autofocus
<!DOCTYPE html>
<html>
<body>
<form action="demo_form.asp">
First name:<input type="text" name="fname" autofocus><br>
Last name: <input type="text" name="lname"><br>
<input type="submit">
</form>
<p><strong>Note:</strong> The autofocus attribute of the input tag is not supported in Internet Explorer 9 and earlier versions.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment