473,395 Members | 1,484 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Disable saved form information on input?

no
Is there any way to disable the saved form information Mozilla Firefox
and Internet Explorer presents in a list every time you type text in a
form input, on a page you use every day?

If so, what is the correct syntax for the CSS?

Thanks.
Jul 20 '05 #1
18 9926
no@spam.com wrote:
Is there any way to disable the saved form information Mozilla Firefox
and Internet Explorer presents in a list every time you type text in a
form input, on a page you use every day?
Yes, via browser settings. In Mozilla, it's under Tools > Forms manager.
I don't use MSIE except to test, so I don't know where the config option
for forms is on that os compone...uh, browser.
If so, what is the correct syntax for the CSS?


There's no css involved.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #2
no@spam.com wrote:
Is there any way to disable the saved form information Mozilla Firefox
and Internet Explorer presents in a list every time you type text in a
form input, on a page you use every day?
You can turn these off in your browser preferences.

The non-standard autocomplete attribute can disable this function on a
case by case basis in MSIE. I don't know whether any other browser has
copied this extension.
http://msdn.microsoft.com/workshop/a...tocomplete.asp
If so, what is the correct syntax for the CSS?


Why on earth do you think that would have anything to do with CSS? CSS
is for presentation, not for mucking about with the functionality of
the users' browsers.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #3
no
On Thu, 20 May 2004 15:39:37 -0400, Brian
<us*****@julietremblay.com.invalid> wrote:
Yes, via browser settings. In Mozilla, it's under Tools > Forms manager.
I don't use MSIE except to test, so I don't know where the config option
for forms is on that os compone...uh, browser.
If so, what is the correct syntax for the CSS?


There's no css involved.


Hello Brian,

Yes, I know how to disable it completely.

However, I only wanted to disable it for an internal application we
use, and leave the feature on for other web sites.

I don't think it's possible to disable it per input, but if it is I'd
like to find out how.

Bye for now
Jul 20 '05 #4
no
On Thu, 20 May 2004 20:39:51 +0100, Steve Pugh <st***@pugh.net> wrote:
Why on earth do you think that would have anything to do with CSS? CSS
is for presentation, not for mucking about with the functionality of
the users' browsers.

Steve


I only want to disable it for one internal site and leave the feature
enabled for all other sites. I don't think it's possible.

I've tried the AUTOCOMPLETE="off" but it's not supported in
Firefox/Mozilla.
Jul 20 '05 #5
no
On Thu, 20 May 2004 20:47:23 +0100, no@spam.com wrote:
I only want to disable it for one internal site and leave the feature
enabled for all other sites. I don't think it's possible.

I've tried the AUTOCOMPLETE="off" but it's not supported in
Firefox/Mozilla.


Duh, ignore me. It does work in Firefox/Mozilla. I was coding the
wrong input on the form.

As follows:

<INPUT AUTOCOMPLETE="off">

you can also do it for the complete form:
<FORM AUTOCOMPLETE="off">

This works in Firefox and Internet Explorer without us having to turn
the feature off completely.

Cheers
Jul 20 '05 #6
no@spam.com wrote:
On Thu, 20 May 2004 20:39:51 +0100, Steve Pugh <st***@pugh.net> wrote:
Why on earth do you think that would have anything to do with CSS? CSS
is for presentation, not for mucking about with the functionality of
the users' browsers.
I only want to disable it for one internal site and leave the feature
enabled for all other sites. I don't think it's possible.


And that explains why you think a style sheet language would give you
this ability?

If it's an internal site, then you may be able to configure the
internal browsers to not store info for that site. But that's a
sysadmin and/or browser config issue not an HTML one.
I've tried the AUTOCOMPLETE="off" but it's not supported in
Firefox/Mozilla.


Have you checked the mozilla.org site? Or asked in a Mozilla
newsgroup?

You can always put the site on a sercure server, browsers don't store
details entered in forms on secure pages. ;-)

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net> <http://steve.pugh.net/>
Jul 20 '05 #7
no
On Thu, 20 May 2004 21:02:50 +0100, Steve Pugh <st***@pugh.net> wrote:
Have you checked the mozilla.org site? Or asked in a Mozilla
newsgroup?

Hello Steve,

I've fixed it by putting:

autocomplete="off"

inside each <form tag on my site.
You can always put the site on a sercure server, browsers don't store
details entered in forms on secure pages. ;-)

Not true. Firefox does save form information on HTTPS sites.

Bye for now
Jul 20 '05 #8
no@spam.com wrote:
I only wanted to disable it for an internal application we use


So your question is off topic for this group, then.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #9
Steve Pugh wrote:
The non-standard autocomplete attribute can disable this function on a
case by case basis in MSIE. I don't know whether any other browser has
copied this extension.


Mozilla has, but a user can configure the browser to veto the author's
choice on this matter.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #10
no
On Thu, 20 May 2004 18:19:04 -0400, Brian
<us*****@julietremblay.com.invalid> wrote:
no@spam.com wrote:
I only wanted to disable it for an internal application we use


So your question is off topic for this group, then.


Errrrrrrrrrrrrrrrrrrrrrrrrrr no.

Jul 20 '05 #11
no@spam.com wrote:
Brian wrote:
no@spam.com wrote:
I only wanted to disable it for an internal application we use


So your question is off topic for this group, then.


Errrrrrrrrrrrrrrrrrrrrrrrrrr no.


Er, yes. See the "www" in the group name?

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #12
Brian <us*****@julietremblay.com.invalid> wrote:
So your question is off topic for this group, then.
Errrrrrrrrrrrrrrrrrrrrrrrrrr no.


Er, yes. See the "www" in the group name?


Let's rephrase the original question:

"Is there a standard attribute for the form or input
elements that will suggest the browser should not
save the information?"

Then it's on topic, and the answer is "no".

http://www.w3.org/TR/REC-html40/inte...tml#edef-INPUT
Similarly, there aren't any standard HTML attributes that
force the user's browser to clear the cache, bookmark your
site, or uninstall IE6 and install Mozilla. If such things
seem necessary, you'll have to get the user do it manually.

;K
;K

Jul 20 '05 #13
Brian wrote:
no@spam.com wrote:
I only wanted to disable it for an internal application we use


So your question is off topic for this group, then.


Is there a group for non-www authoring.html? I couldn't find one when I
looked some time ago.

--
Christine

Jul 20 '05 #14
Christine Forber wrote:
Is there a group for non-www authoring.html? I couldn't find one when
I looked some time ago.


I found several, including comp.infosystems.intranet

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #15
Brian wrote:
Christine Forber wrote:
Is there a group for non-www authoring.html? I couldn't find one when
I looked some time ago.


I found several, including comp.infosystems.intranet


Thanks. I had done a search for newsgroups with "html" in the group
name. Only found alt.html as an alternative to this group. Didn't think
of comp.infosystems.intranet.

--
Christine

Jul 20 '05 #16
CJM
"Brian" <us*****@julietremblay.com.invalid> wrote in message
news:10*************@corp.supernews.com...

I found several, including comp.infosystems.intranet


Yes there is this other NG, but as you well know it is deader than the
average Dodo... not only that, but it is not for HTML either. Only one post
in May.

Of course, you could equally argue that c.i.w.browsers.* would be more
appropriate groups, given the OPs question and our subsequent answers, but I
wouldn't.

Personally, I'd be happy to recieve posts in this NG that involve intranets,
providing the focus generally remains on the HTML.
I can't speak for others of course....

CJM
Jul 20 '05 #17
CJM wrote:
Brian wrote...
I found several, including comp.infosystems.intranet
there is this other NG, but as you well know it is deader than the
average Dodo...


No, I don't "well know." I don't read that group, because I don't work
with intranets.
Of course, you could equally argue that c.i.w.browsers.* would be more
appropriate groups
That might be appropriate. I'd have to spend more time in the *browsers*
groups.
I'd be happy to recieve posts in this NG that involve intranets,
providing the focus generally remains on the HTML.


....provided the focus remains on HTML in a broad sense, i.e., I think
questions about how to make a "web application" work for one browser,
because "that's the browser that our intranet users have," is
appropriate for this group. Same for "we require js to be on for the
browsers on our intranet, so your criticism about not having js is not
relevant"; that strikes me as off-topic.

This is a group for HTML on the www. If you're not prepared to discuss
the ramifications of your code on the www, then take it elsewhere. My 2
cents.

--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/
Jul 20 '05 #18
On Tue, 25 May 2004, CJM wrote:
I found several, including comp.infosystems.intranet
Yes there is this other NG, but as you well know it is deader than the
average Dodo...


Maybe they realised (one can always hope ;-) that techniques which are
applicable to the World Wide Web are often also the best answer in an
intranet context. I know of one corporate intranet which spent large
sums on making their pages WAI-compatible because of the threat of
legal action on behalf of their disabled employees and potential
employees. Much of that WAI work would be removing intranet-only
factors, it seems to me.
Personally, I'd be happy to recieve posts in this NG that involve
intranets, providing the focus generally remains on the HTML.


Depends on what you mean by "HTML". If they want to make the pages
dependent on vendor-specific feechers then I'm going to have to vote
against. Of course they're entirely welcome to learn anything they
can from WWW-compatible techniques. And it will stand them in good
stead if/when some corporate decision is taken to change vendors.

Jul 20 '05 #19

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Bob Bedford | last post by:
I create checkboxes using datas from a database (with PHP). I store all values in an array, as I must pass this value like a Form value. Now, in some cases, when a checkbox is selected, I must...
12
by: Forti2ude | last post by:
Hello, I have a simple form... <form> <select name="foo" multiple> <option value="1">one</option> <option value="2">two</option> <option value="3">three</option> </select>
1
by: Manatee | last post by:
Hi group. I have exactly one external, alternate stylesheet that I want to enable or disable by form controls, on one page only (not saved across pages). I used: <link rel="alternate...
2
by: Sam White | last post by:
I have set up a MySQL db on one server, IIS 6.0 on another. Using Frontpage I created some forms to input data. On a test page I made, I have 4 fields. First is the ID which is autonumber (I leave...
6
by: Mike | last post by:
I have a form that contains 240 "products". Each Product has a TR. Each TR contains a Yes and No radio button and a Product-Qty text input. A situation exists where I have to go through all the...
9
by: surf_doggie | last post by:
Im not sure if this is the group to post in, if anyone knows a more appropriate one please let me know. Please consider the following example of a feature most all browsers have that I would...
3
by: Adamowski | last post by:
Hello, I am currently using Access 2007 on an XP laptop. I have a table and a form used to add records to the table. I have noticed that if I close the form without filling out all of the...
3
by: ojasrege | last post by:
If I have a web form where a user enters sensitive information, such as a SS#, is there any way for a web site to prohibit any browser from remembering data for specific fields (IE's autocomplete)?...
3
by: Venturini | last post by:
I am trying to put together a web page where the customer makes choices of products and is then given a total. I am extremely new to Javascript and have managed to get as far as I have from web...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.