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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:21:33+00:00 2026-06-18T10:21:33+00:00

I am using jqueryui autocomplete. I want to bind autocomplete to various selectors but

  • 0

I am using jqueryui autocomplete. I want to bind autocomplete to various selectors but success, source etc of autocomplete functions need to be customized for different selectors.

//Define execute function for birds
//Define execute function for turtles
        $( "#birds,#turtles" ).autocomplete({
          source: "search.php",
          minLength: 2,
          select: function( event, ui ) {
            this.execute();
            /*based on selector id execute() will call the 
              right function attached with the selector
              if called by birds
                call execute function of birds
              if called by turtles
                call execute function of turtles*/
          }
        });

So how can i attach customize function with various objects and let jquery select the appropriate source and customized function based on selector ?

  • 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-06-18T10:21:34+00:00Added an answer on June 18, 2026 at 10:21 am

    Event.target will provide the DOM element that triggered the autocomplete.

        $( "#birds,#turtles" ).autocomplete({
          source: "search.php",
          minLength: 2,
          select: function( event, ui ) {
            this.execute();
            autocomplete(event, ui);
          }
        });
    
    function autocomplete(event, ui){
         if(event.target.id == "birds"){
           //dothis();
         }else if(event.target.id == "turtles"){
           //dothat();
         }
    }
    

    Another Option

    If you wanted a more sophisticated solution you could create a factory like object. Such as:

    var completions = {
       turtles: function(){
         //Do this
       },
       birds: function(){
         //Do that
       }
    };
    

    Then use this object in the function bound to the select, using the id as a key.

       $( "#birds,#turtles" ).autocomplete({
          source: "search.php",
          minLength: 2,
          select: function( event, ui ) {
            this.execute();
            completions[event.target.id]();
          }
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using jqueryui autocomplete widget for autocompleting a 'country' field but I am
I'm using jQueryUI AutoComplete but am having a small problem in that no filtering
I'm using the jqueryui autocomplete to have my textbox appear with various options for
What I want to do is have categorised results using autocomplete through jQueryUI's function.
I'm using the popular JQuery Autocomplete plugin below. http://jqueryui.com/demos/autocomplete/ Currently if you type a
I'm using the jQuery UI Autocomplete . I'm using it on three different input.
I'm using jqueryui and its Autocomplete plugin. It use a json to extract items.
I want to merge two plugins together. I am using jquery autocomplete for zipcode
I am having trouble using JQueryUI with salesforce standard elements. Basically, I want to
I'm using the nifty 'combobox' variant of jQuery UI Autocomplete - see here: http://jqueryui.com/demos/autocomplete/#combobox

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.