Created
May 12, 2014 07:04
-
-
Save carlosrojaso/4daa33b7f13774058816 to your computer and use it in GitHub Desktop.
autofocus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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