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 using a Google Places Autocomplete and I simply want it to select the top item in the results list when the enter key is pressed in the form field and suggestions exist. I know this has been asked before:

Google maps Places API V3 autocomplete - select first option on enter

Google maps Places API V3 autocomplete - select first option on enter (and have it stay that way)

But the answers in those questions don't seem to actually work, or they address specific added functionality.

It also seems like something like the following should work (but it doesn't):

$("input#autocomplete").keydown(function(e) {
  if (e.which == 13) {          
    //if there are suggestions...
    if ($(".pac-container .pac-item").length) {
      //click on the first item in the list or simulate a down arrow key event
      //it does get this far, but I can't find a way to actually select the item
      $(".pac-container .pac-item:first").click();
    } else {
      //there are no suggestions
    }
  }
});

Any suggestions would be greatly appreciated!

share|improve this question
You'd have to use the google.maps.places.AutocompleteService class and read the AutocompletePrediction manually: developers.google.com/maps/documentation/javascript/… – Marcelo Jan 30 at 11:08
2  
@Mubix accepted answer in the second question you linked to covers what seems to be needed, with the addition of some extra functionality that can be easily stripped out. As per this demo I just forked from the above doing just that: jsfiddle.net/Ut2U4/1 – Craig Blagg Jan 30 at 11:42
@CraigBlagg Thanks! I got that to work eventually. Not sure why it didn't work the first time around, but rebuilding it line-by-line got the desired result! – NChase Feb 1 at 9:53
Great. Strange it didn't work straight away (seems to work here). But glad it worked out @NChase – Craig Blagg Feb 1 at 10:27
@CraigBlagg, in your sample (jsfiddle.net/Ut2U4/1), it's needed to make sure 'keypress' event is removed from the document when 'focusout' is fired (line 14). Otherwise, you're attaching it to the document every time input is getting focus. – manakor Mar 25 at 18:28

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.