Click to See Complete Forum and Search --> : How to off AutoComplete feature in edit box of a web page
columbus2003
January 15th, 2003, 03:45 AM
In some registration pages, there are 2 edit boxes (next one is for confirmation) for example:
Email Address: _______________________|
Re-type email Address: _______________________|
When I started typing in first edit box, autoComplete feature show me a list. But there's no list for another edit box(is used for Confirmation).
Please let me know how to do it.
websmith99
January 15th, 2003, 03:04 PM
The end user can turn off the autocomplete feature of IE by doing the following:
For IE 6
1. From the "Tools" menu, select "Internet Options..."
2. In the "Internet Options" dialog box, select the "Content" tab
3. In the "Personal information" section, press the "AutoComplete..." button
4. In the "Use AutoComplete for" section in the "AutoComplete Settings" dialog box, uncheck all of the boxes
5. Press the "OK" button in the AutoComplete Settings dialog box
6. Press the "OK" button in the "Internet Options" dialog box
:cool:
columbus2003
January 16th, 2003, 03:05 AM
Thanks for your reply. But I don't mean like that.
What I want to know is....
In an end user's browser,
AutoComplete feature has been already on.
When he type in first text box (Email Address: in my previous post.), AutoComplete feature must be work well.
But when he type in send text box(Re-type email Address:in my previous post.), AutoComplete list won't be appeared.
websmith99
January 16th, 2003, 02:29 PM
This is even easier!
To turn off autocomplete in a form element:
<input type="password" AUTOCOMPLETE="off" />
To turn off autocomplete for the entire form:
<form name="foo" action="foo.jsp" method="post" AUTOCOMPLETE="off">
Note that this is IE specific.
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/forms/autocomplete_ovr.asp
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/autocomplete.asp
columbus2003
January 16th, 2003, 10:01 PM
Thanks for your reply.
I thought I need to do many things. Oh! It has been well done. We just need to have it. I think I should go to the ****.
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.