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 4081694
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:05:37+00:00 2026-05-20T18:05:37+00:00

I would like to change the value in minChars depending on a select value

  • 0

I would like to change the value in minChars depending on a select value ?
I tried :

    var nbCharIso = 4;

    $j('#pays').change(function() {
      var isoPays = $j('select.pays option:selected').val();
      nbCharIso = (isoPays == 'Canada') ? 3 : nbCharIso; 
      alert(nbCharIso);
    });

    $j("#cp").autocomplete('codepostal.inc.php', {
        delay: 100,
        cacheLength: 0,
        //minChars: 4,
        minChars: nbCharIso,
        max: 100,
        width: 320,
        scrollHeight: 160,
        multiple: false,
        matchContains: true,
        formatItem: formatItem,
        formatResult: formatResult,
        extraParams: {
            country: function() { return $j('select.pays option:selected').val(); } 
        }
    }).result(function(e, item) {
        // foo
    });

But this doesn’t work !
How can I change dynamically the minChars value in the autocomplete function ?

Thanks for your help…

  • 1 1 Answer
  • 0 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-20T18:05:38+00:00Added an answer on May 20, 2026 at 6:05 pm

    That’s because .autocomplete is only being called once – when the form is loaded. At the time it is called the value of nbCharIso is 4.

    //var nbCharIso = 4; // comment this out or delete it
    setupAutocomplete(4); // add this
    
    $j('#pays').change(function() {
      var isoPays = $j('select.pays option:selected').val();
      var nbCharIso = (isoPays == 'Canada') ? 3 : 4; 
      //alert(nbCharIso);
      setupAutocomplete(nbCharIso); // add this
    });
    
    // wrap .autocomplete in a function so we can call it whenever we want
    function setupAutocomplete(nbCharIso) {
    $j("#cp").autocomplete('codepostal.inc.php', {
        delay: 100,
        cacheLength: 0,
        //minChars: 4,
        minChars: nbCharIso,
        max: 100,
        width: 320,
        scrollHeight: 160,
        multiple: false,
        matchContains: true,
        formatItem: formatItem,
        formatResult: formatResult,
        extraParams: {
            country: function() { return $j('select.pays option:selected').val(); } 
        }
    }).result(function(e, item) {
        // foo
    });
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given the following HTML: <select id=addSelection> <option value=Original Value>Original Value</option> </select> I would like
I have the following problem: I would like to change value of ExpandableListView's cell
I would like to change the value of a property if it is a
I would like to change the value of RequestQueue elemt under @sorregion name[.='default'] to
Depending on the current page, I would like to change the css of the
I would like to change the self value of a float instance. I have
I would like to change the value of a ArrayList once a application is
I would like to change the value of an input field when the form
I would like to change the value of my gridview column to active when
I would like to change the background color of all the rows with value

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.