-
IE textbox ????
How do you keep a textbox from "remembering" text that was previously typed in it when using IE? I have seen some websites where I put in my username and I DO NOT get the dropdown list of values I typed the day before. I've looked at the code on these pages and I can't see any script that forces this. Is there an attribute of the textbox I can set?
-
that is the auto complete in your browser not the website. you can turn it off. the reason you didn't get it last time on another site is because IE doesn't remember it. as far as I know there is no script or text that will work.
-
In a form you can use:
<INPUT size=15 name="User" autocomplete="off">
That should work.:)