0

I'm having a lo-gin page in that i just want to clear suggestion box like if 10 users lo-gin from that lo-gin page and when 11 user try to lo-gin from same lo-gin page and when he click on that input field he gives all 10 the names as suggestion i don't want that user know the name of previously lo-gin users please help i already tried autocomplete in input field as well as on form but it won't help I'm a fresher if i made any mistake in writing please consider...

<input class="input-field" id="userName" name="userName" type="text">.
Anukul
  • 45
  • 1
  • 8

1 Answers1

1

Try autocomplete property of input:

<input class="input-field" id="userName" name="userName" type="text" autocomplete="off" />
                                                                     ^^^^^^^^^^^^   
Manwal
  • 22,117
  • 10
  • 57
  • 89