Yellow form fields

S

Steve Easton

That is caused by the Google Toolbar

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
S

SAC

When I make a form and go to enter info, some of the form fields are yellow
and others aren't.

Why does this happen?

Thanks.
 
T

Tom Gahagan

Or his form has hepatitis??? < s >

Tom Gahagan

Steve Easton said:
That is caused by the Google Toolbar

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer
 
F

FrontPageForms

Since some of your site visitors may not remember why the fields are yellow,
you can use the following script to kill yellow fields kill for your site
visitors.

Courtesy of Mike @ http://texaswebdevelopers.com

<!--[if IE]>
<script type="text/javascript">
function killAutofill(){
is = document.getElementsByTagName("INPUT");
for(i=0;i<is.length;i++)
is.style.backgroundColor = "";
ss = document.getElementsByTagName("SELECT");
for(i=0;i<ss.length;i++)
ss.style.backgroundColor = "";
}
window.onload=killAutofill;
</script>
<![endif]-->
 
S

SAC

Thanks.

Steve Easton said:
That is caused by the Google Toolbar

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer
 
S

SAC

Thanks.

FrontPageForms said:
Since some of your site visitors may not remember why the fields are yellow,
you can use the following script to kill yellow fields kill for your site
visitors.

Courtesy of Mike @ http://texaswebdevelopers.com

<!--[if IE]>
<script type="text/javascript">
function killAutofill(){
is = document.getElementsByTagName("INPUT");
for(i=0;i<is.length;i++)
is.style.backgroundColor = "";
ss = document.getElementsByTagName("SELECT");
for(i=0;i<ss.length;i++)
ss.style.backgroundColor = "";
}
window.onload=killAutofill;
</script>
<![endif]-->



SAC said:
When I make a form and go to enter info, some of the form fields are yellow
and others aren't.

Why does this happen?

Thanks.
 
Top