autocomplete - Chrome not prefilling form -


i have form have chrome autofill or prefill (i'm using mac chrome 26.0.1410.65 on mountain lion). purpose of demonstrate autocomplete standards: i'd show either fields prefilled on load, or if user starts typing first name auto-fill both names.

i'm using autocomplete , entire page below, 2 fields.

i submit, next time visit page, have start typing each field drop-down auto-complete. no matter on first field, have tab second , start typing there.

i'd fill in fields (well, both) when accept value in first field. how that? see happening in commercial websites, starting type in single field , pre-fills many other fields. (even if there yellow background)

<!doctype html> <html>   <head><title>autofill test</title></head>   <body>     <form name="nameform" action="?go" method="post">         <input type="text" name="givenname" autocomplete="given-name">         <input type="text" name="familyname" autocomplete="family-name">         <button type="submit">save values</button>     </form>   </body> </html> 

i've seen other questions indicate have use post, , there cannot hyphens in name. have tried x-autocompletetype , autocomplete. i've tried without doctype (i'm getting desperate), , renaming fields "fname" or "firstname" etc. nothing appears work.

is there i'm missing?


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -