Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 340643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:38:06+00:00 2026-05-12T10:38:06+00:00

The Google Toolbar’s autofill feature has been the bane of my web development existance

  • 0

The Google Toolbar’s autofill feature has been the bane of my web development existance for the past several years. I have always settled on trying to create a timer control to check for changes since the developers epically failed to fire change events on controls. This has gotten further and further complicated when controls are buried inside nested repeaters, and then trying to tie it to an UpdatePanel is a further complication.

Has anyone succesfully been able to prevent Google Toolbar from filling in form fields without renaming the field to something insignifcant? (note: This doesn’t work for a ‘State’ dropdown, it even goes as far as to check field values).

For as smart as Google employees are supposed to be, this was a grandly moronic oversight.

Update: For those who may be coming here looking for a solution. What I have found to work so far is you have ASP.net, is to use the server control “Timer” and to set this control as a trigger for the UpdatePanel. It helps to loop through and check for changed values.

If you only have access to javascript, or are using another framework, then I found using the following function to work the best (I was trying to monitor state and zip changes. The focusElement is required because when hovering in a dropdownlist, it changes the selectedindex):

    function MonitorChanges(sStateDropdownID, sZipCodeID, sHiddenStateFieldId, sHiddenZipFieldId, bDoPostback) {
        var state = $('#' + sStateDropdownID).val();
        var zip = $('#' + sZipCodeID).val();
        var hiddenstate = $('#' + sHiddenStateFieldId).val();
        var hiddenzip = $('#' + sHiddenZipFieldId).val();
        $('#' + sHiddenStateFieldId).val(state);
        $('#' + sHiddenZipFieldId).val(zip);

        var compareString = state + zip;
        var compareHiddenString = hiddenstate + hiddenzip;

        var focusElement = getElementWithFocus();
        if (compareString != compareHiddenString && isShippingZip(zip)) {
            bDoPostback = true
        }

        if (parseInt(focusElement.id.search('drpState')) == -1 && parseInt(focusElement.id.search('txtZip')) == -1 && bDoPostback) { bDoPostback = false; __doPostBack(sStateDropdownID, ''); }

        var f = function() { MonitorChanges(sStateDropdownID, sZipCodeID, sHiddenStateFieldId, sHiddenZipFieldId, bDoPostback); }
        setTimeout(f, 1000);
    }
  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:38:06+00:00Added an answer on May 12, 2026 at 10:38 am

    According to a recent post by a Google developer, using the autocomplete="off" attribute will disable Google toolbar auto-completion in both IE and Firefox. Note that this attribute must be applied to the <form> tag and not the individual <input> tags:

    <form method="post" action="http://example.com" autocomplete="off">
    <!-- ... -->
    </form>
    

    While this is not an instant fix, it is probably the most reliable solution possible – if it is possible to wait until the next iteration of the Google toolbar.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a toolbar that manipulates a Google map. Some of the functions affect
How can I stop Google Toolbar offering to translate my web app? I've tried
In my VS2012 I don't have anymore entry for Google Chrome in my toolbar
I installed google toolbar recently and used the word translate feature where you hover
How does Google Toolbar determine the language of a page to offer translation from
In the Google Maps app on iPhone, the toolbar in the buttom is still
Google has taken up the implementation of WebRTC in Chrome very seriously as indicated
Visual Studio ate my toolbar, I opened a solution for a project I've been
I have a friefox sidebar extension. If its opened by clicking on the toolbar
I have a UICollectionView showing several items. I also have an edit button in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.