Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have design problem with Google Chrome and its form autofill function. If Chrome remembers some login/password it changes a background color to a yellow one.

Here are some screenshots:

alt text alt text

How to remove that background or just disable this autofill ?

share|improve this question
I'd also like to see if there's an answer to this. – Kyle Sevenoaks May 27 '10 at 10:33
Why you would want such a thing is beyond my comprehension. – ANeves May 27 '10 at 11:00
7  
For styling, this colour can seriously with design elements, like the outlining in input tags in Chrome also, I would more like to change the colour than turn it off. – Kyle Sevenoaks May 27 '10 at 11:02
1  
Google seems to acknowledge this issue to some degree. See code.google.com/p/chromium/issues/detail?id=46543 – MitMaro Nov 12 '10 at 4:49
@ANeves Well this is a major issue when you have an heavy design site where you use background or sprite methods to show the user what's is the desire value in a specify field. So if chrome override this background-image whith their background-color, Users wont see what you want to show them. – nahum Mar 5 '12 at 5:11

12 Answers

up vote 60 down vote accepted

Apply this CSS:

input:-webkit-autofill {
    color: #fff !important;
}

Just tested on my site and it doesn't work on background-color :(

Edit: After doing some research I found this jQuery:

if ($.browser.webkit) {
    $('input[name="password"]').attr('autocomplete', 'off');
}

Maybe that will help.

share|improve this answer
Interesting. I suspect the yellow color is meant as a security-relevant highlight to tell the user that something happened. The fact that you can disable that from the site CSS looks like a security problem to me. – Joachim Sauer May 27 '10 at 11:15
Oh, and +1 for an actual on-topic plug of your site ;-) – Joachim Sauer May 27 '10 at 11:16
I agree, but there always should be a way to change such behaviours, going back to my example that this color clashes with the rest of my site design. – Kyle Sevenoaks May 27 '10 at 11:22
2  
Your CSS changes text color to white but do not touches background-color. Overwrite it does nothing. – hsz May 27 '10 at 11:30
1  
@Joachim Sauer But you are able to just hide those fields with CSS anyway. Or you can use script to save auto-filled info and secretly submit it without user noticing. So what's the whole point? I can't see much security, just some annoyance for designers. – RocketR Sep 1 '11 at 22:33
show 10 more comments

Solution here:

if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
    $(window).load(function(){
        $('input:-webkit-autofill').each(function(){
            var text = $(this).val();
            var name = $(this).attr('name');
            $(this).after(this.outerHTML).remove();
            $('input[name=' + name + ']').val(text);
        });
    });
}
share|improve this answer
You've just saved my life! – Mike Lentini Sep 13 '11 at 15:20
3  
yeah this worked for me as well. freaking chrome man – Jake Rocheleau Sep 20 '11 at 1:53
Thanks very much - this worked for me. – codeinthehole May 17 '12 at 22:19

In Firefox you can disable all autocomplete on a form by using the autocomplete="off/on" attribute. Likewise individual items autocomplete can be set using the same attribute.

<form autocomplete="off" method=".." action="..">  
<input type="text" name="textboxname" autocomplete="off">

You can test this in Chrome as it should work.

share|improve this answer
1  
Turning autocomplete="off" is not accessible these days. – João Ramos Apr 4 '12 at 10:00
It is working in chromium 18.0.1025.168 – Zefiryn Jun 26 '12 at 6:57

If you want to preserve the autofill, as well as any data, attached handlers and functionality attached to your input elements, try this script:

if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0)
{
    var _interval = window.setInterval(function ()
    {
        var autofills = $('input:-webkit-autofill');
        if (autofills.length > 0)
        {
            window.clearInterval(_interval); // stop polling
            autofills.each(function()
            {
                var clone = $(this).clone(true, true);
                $(this).after(clone).remove();
            });
        }
    }, 20);
}

It polls until it finds any autofill elements, clones them including data and events, then inserts them into the DOM in the same location and removes the original. It stops polling once it finds any to clone since the autofill sometimes takes a second after page load. This is a variation of a previous code sample, but more robust and keeps as much functionality intact as possible.

(Confirmed working in Chrome, Firefox and IE 8.)

share|improve this answer
3  
This was the only solution I found working, WITHOUT disabling autocomplete. – Xeroxoid Sep 19 '11 at 8:55
maybe setting intervals is not necessary as chrome autofills on window.load? – Timo Huovinen Nov 22 '11 at 10:48
this works!!! I already test it. – nahum Mar 5 '12 at 5:06
Works without removing auto complete, much better solution than the ones with millions of up votes. – Ally Sep 6 '12 at 14:48

Change the white to any color.

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
share|improve this answer
1  
excellent hack!!! – anna.mi May 15 at 10:17

In your tag, simply insert this small line of code.

autocomplete="off"

However, do not place this in the username/email/idname field because if you are still looking to use autocomplete, it will disable it for this field. But I found a way around this, simply place the code in your password input tag because you never autocomplete passwords anyways. This fix should remove the color force, matinain autocomplete ability on your email/username field, and allows you to avoid bulky hacks like Jquery or javascript.

share|improve this answer

Here's the MooTools version of Jason's. Fixes it in Safari too.

window.addEvent('domready',function() { 
    $('username').focus();

    if ((navigator.userAgent.toLowerCase().indexOf(\"chrome\") >= 0)||(navigator.userAgent.toLowerCase().indexOf(\"safari\") >= 0))
    {

        var _interval = window.setInterval(function ()
        {
            var autofills = $$('input:-webkit-autofill');
            if (autofills.length > 0)
            {

                window.clearInterval(_interval); // stop polling
                autofills.each(function(el)
                {
                    var clone = el.clone(true,true).inject(el,'after');;
                    el.dispose();
                });
            }
        }, 20);                                               


    }
});
share|improve this answer

This fixes the problem on both Safari and Chrome

if(navigator.userAgent.toLowerCase().indexOf("chrome") >= 0 || navigator.userAgent.toLowerCase().indexOf("safari") >= 0){
window.setInterval(function(){
    $('input:-webkit-autofill').each(function(){
        var clone = $(this).clone(true, true);
        $(this).after(clone).remove();
    });
}, 20);
}
share|improve this answer
Is what works for me. But the BUG still there, and as can be seen, no date to be fixed. code.google.com/p/chromium/issues/detail?id=46543#c22 – Eduardo Moratto Jun 6 at 7:01

i know its stupid! but i think its work :P

// change the white to any color ;)
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
share|improve this answer

Here's a Mootools solution doing the same as Alessandro's - replaces each affected input with a new one.

if (Browser.chrome) {
    $$('input:-webkit-autofill').each(function(item) {
        var text = item.value;
        var name = item.get('name');
        var newEl = new Element('input');
        newEl.set('name', name);
        newEl.value = text;
        newEl.replaces(item);
    });
}
share|improve this answer

Just found myself with the same question. This works for me:

form :focus {
  outline: none;
}
share|improve this answer
1  
thats the outline on the box when you click in it, not the autofilled input's background colour – Nicola Oct 2 '12 at 11:13

What about that solution:

if ($.browser.webkit) {
    $(function() {
        var inputs = $('input:not(.auto-complete-on)');

        inputs.attr('autocomplete', 'off');

        setTimeout(function() {
            inputs.attr('autocomplete', 'on');
        }, 100);
    });
}

It turns off the auto-complete and auto-fill (so yellow backgrounds disappear), waits 100 milliseconds an then turns the auto-complete functionality back without auto-fill.

If you have inputs that need to be auto-filled, then give them auto-complete-on css class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.