php - Input text type error with autocomplete -


i have input element doesn't accept text autocomplete recommendation dropdown (values have sometime entered). code simple gets:

<input name="name" placeholder="name" type="text" value="" required> 

input holder paints yellow , when process form, script isn't executed correctly. don't seem error in console either. using google chrome. there simple solution this?

its work. when name stored presses submit

<form>   <input name="name" placeholder="name" type="text" value="" required autocomplite="on">   <input type="submit"> </form> 

Comments

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

java - Vaadin 7 Pass Data Between Views -