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

  • Home
  • SEARCH
  • 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 8433333
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:21:29+00:00 2026-06-10T06:21:29+00:00

My HTML structure is like this : <div class=controls> <input id=car class=span3 type=text placeholder=B.E

  • 0

My HTML structure is like this :

<div class="controls">
<input id="car" class="span3" type="text"  placeholder="B.E" autocomplete="off" value="" name="car[]">
</div>

<div class="controls">
<input id="car" class="span3" type="text"  placeholder="B.E" autocomplete="off" value="" name="car[]">
</div>

My javascript is given below:

car = getcar();
$("#car").click(function() {
$('#car').typeahead({
    source: car,
    items: 10
});
});

getcar() is function which is getting source data using ajax

It is showing typeahead for only first input element not for second input element

What should i do now?

  • 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-10T06:21:31+00:00Added an answer on June 10, 2026 at 6:21 am

    There are a few points that may cause your problems.

    Ajax call

    There is no way you can get data from an ajax request by simply calling data = getData();.

    You have to use callbacks, you can check the basic examples on the jQuery docs

    Duplicate IDs

    HTML element IDs must be different on the same page. Check the w3.org doc. Instead you could use classes like <input class="car" ... and the jQuery selector $('.car')

    Typeahead initialization

    The Typeahead plugin should only be initialized once. If you bind some event to activate the plugin, then you should unbind this event so that it isn’t called again.


    Here is an example that you could adapt to your situation, with its working demo (jsfiddle)

    $('.typeahead').on('click.typeaheadonce', function() {
        var $this = $(this)
        $this.off('click.typeaheadonce'); // Disable this listener so that it's called only once
        $.ajax(ajaxUrl, {
            type: 'post',
            data: ajaxData
        }).done(function(data) {
            // initialize the typeahead plugin
            $this.typeahead({
                source: data
            });
            alert('activated!'); // Ok !
        });
    });
    

    Based on the markup

    <input type="text" class="typeahead" />
    <input type="text" class="typeahead" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The html structure looks like this <div id=parent> parent may contain text <div id=child1>
My HTML structure looks like this <div class=container> <div class=image><img /></div> <div class=title_body> <div
i have html structure like this <div> <span class=ic> <span class=ic>12345</span> </span> </div> i
let's say I have an HTML structure like this: <div class=first> <div class=sub-1> <div
I have a html structure like this: <div class=one> <div id=two> <h2>Any</h2> <h4>Any</h4> </div>
I have the html structure like this <div class=selected> <div class=selectedOption>September 2012</div> </div> <div
The main structure of the page is like this: <html> <body> <div id=Menu> <h1>Menu</h1>
I have this HTML structure <div class=buttons> <button data-icon=ui-icon-disk class=save>Save1</button> <button data-icon=ui-icon-check class=ok>OK1</button> <button
I have a html structure like this.. <div id=divid> <ul id=ulid> <li style=margin-left: 8px>
I have a html structure like this : <div id=nav_holder style=position:absolute;border-radius:400px;width:0px;height:0px;background-color:#460203;z-index:350px;> <div id=inner_wrap> </div>

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.