http://jsfiddle.net/F1sn1k/rVmxz/20/
I have tried a lot of combinations but seems place_changed works only with enter press.
var input = document.getElementById('address_guest');
var autocomplete = new google.maps.places.Autocomplete(input);
google.maps.event.addListener(autocomplete, 'place_changed', function(){
//Code here
}
Everything works fine if user 1) select any result from google places autocomplete dropdown list. and 2) when typing into autocomplete textbox press enter than I did some code about result suggestions. I want the same thing like pressing enter in ... addListener to happen with something like onblur() or onchange() or any alternative with on click or tab press...
Thank you