Yes, that definitely seems to do it. However, I know at least two sites that accomplish this effect for IE without autocomplete attribs: http://www.blackboard.uc.e
Is there any other way?
I'll deal with FireFox, but I'm creating a webapp using Struts, and the <html:... /> taglib. It doesn't appear to have an autocomplete attribute, so I would need to create my own taglib and extend the struts tags to add it. Can anyone tell me an alternative way around this, at least for IE/Win32? I know I can set the autocomplete attrib dynamically using javascript, but there must be a 3rd way that's I'm missing.
Thanks,
Dan
Main Topics
Browse All Topics





by: floored1585Posted on 2004-12-08 at 12:27:46ID: 12777304
Form with autocomplete off:
om" autocomplete="off">
com">
<form action="http:/www.mysite.c
<input type="text" name="p">
<input type="submit" value="Submit">
</form>
Form with autocomplete off for only one field:
<form action="http://www.mysite.
<input type="text" name="p" autocomplete="off"> <!--(auto complete off)-->
<input type="text" name="p"> <!--(no auto complete value)-->
<input type="submit" value="Submit">
</form>