Sunday 15 August 2010

html - Chrome autocomplete multiple email fields -



html - Chrome autocomplete multiple email fields -

i have 3 input boxes on form.

google chrome offers autocomplete on them, if click on of them, or start typing, see chrome list of options, move , downwards among autocomplete options, 3 input boxes populated values, instead of current textbox

http://jsfiddle.net/q3h2ydw1/1/

<form action="/" id="form1" method="post"> <input id="email_one" x-autocompletetype="email" /> <input id="email_two" x-autocompletetype="email" /> <input id="email_three" x-autocompletetype="email" /> </form>

the goal getting chrome's autocomplete show emails on current input, , not 3 of them.

update

i tried in fresh computer. didn't utilize autocomplete tag, raw input boxes:

<form action="/" id="form1" method="post"> <input id="four" /> <input id="five" /> <input id="six" /> <input type="submit" value="go" /> </form>

http://jsfiddle.net/q3h2ydw1/7/

after every submit, whatever come in there gets stored, have autocomplete on next trips. also, autocomplete scoped current textbox.

i think issue experiencing more auto complete, maybe auto-fill. while browsing through options on 1 of input boxes, other textboxes getting filled well. solution giving input-boxes fresh new id, lastly fiddle, auto-complete history input lost, next form-post trips, new autocomplete history created them.

html google-chrome autocomplete

No comments:

Post a Comment