2

I have a website where a user can login from two different pages. I have set AutoComplete = "OFF" for the username and password textboxes in both the pages. But, surprisingly, autocompletion is disabled only in one page.!!! The other page still gives previous username suggestions.Is this feature really consistent? I have double checked hundred times. I'm doing no syntax error

Jonathan Leffler
  • 666,971
  • 126
  • 813
  • 1,185
chuckyCheese
  • 369
  • 2
  • 4
  • 14

2 Answers2

0

Be sure that your browser or a plugin isn't configured to do that, above and beyond the browser's default behavior. Some password management features/plugins look deceptively similar to the browser's traditional autocompletion history, but are out of your markup's control.

Dave Ward
  • 57,126
  • 11
  • 114
  • 134
  • I agree some features could be out of markup's control. But it works in one page and not in other under the same website. How can that be? – chuckyCheese Jan 18 '11 at 18:11
0

How are you turning Autocomplete off? Have you tried

$("#yourSelector").autocomplete("destroy");
Pang
  • 8,605
  • 144
  • 77
  • 113
Mike_Laird
  • 1,094
  • 3
  • 15
  • 37