By default which HTML form input will get focus when I input with enter key -
by default html form input focus when input enter key?
is related input order in html source?
i don't know hidden rules of it.
it next 1 declared in order. if had following... input last-name
focus after first-name
.
<input type="text" name="first-name" /> <input type="text" name="last-name" /> <input type="text" name="city" />
Comments
Post a Comment