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

I'm having difficulty selecting values from the typeahead dropdown menu. I am able to sporadically select elements from the menu with a mouse click (such that they update the value attribute of input), but I cannot discern a pattern from this. I am looking for help in making this functionality more consistent. I recognize that similar issues are discussed elsewhere on this site and others, but have been unable to find a satisfactory solution.

Here is my html:

<div class="modal hide fade" id="addCommunity">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
    <h3>add community</h3>
  </div>
  <div class="modal-body">
    <section id="typeahead">
      <div class="well">
        <input type="text" id='addCommunityTypeahead' class="span3" style="margin: 0 auto;" value='' placeholder='community' />
      </div>
    </section>
    <div class="modal-footer">
      <button type="button" class="close" data-dismiss="modal" aria-hidden="true">close</button>
      <button type="submit" aria-hidden="true">add</button>
    </div>
  </div>
</div>

And here is the javascript activating the typeahead:

<script>
  $('#addCommunityTypeahead').typeahead({

    source: ["Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut", "Delaware","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa", "Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan", "Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire", "New Jersey","New Mexico","New York","North Dakota","North Carolina","Ohio", "Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota", "Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia", "Wisconsin","Wyoming"],

  });    

</script>    
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.