function init() {
var input = document.querySelector('div.pop-form #locationTextField');
var input2 = document.querySelector('div.inner-box #locationTextField');
var autocomplete = new google.maps.places.Autocomplete(input);
}
function init2() {
var input = document.querySelector('div.inner-box #locationTextField');
var autocomplete = new google.maps.places.Autocomplete(input);
}
$(document).ready(function () {
google.maps.event.addDomListener(window, 'load', init);
google.maps.event.addDomListener(window, 'load', init2);
});