now it's loading the javascripts correctly there are no errors or warnings. but the Address field in contact module -> new contact is not working with the google address autocomplete. I used the folowing script:
function googlemapsadres() {
google.maps.event.addDomListener(window, 'load', initialize);
};
function initialize() {
var input = document.getElementById('address');
var autocomplete = new google.maps.places.Autocomplete(input);
}
i think the "input id" element "address" is not working. but when i look in the code i see that the id of the address field is "address" but it's not working!
Can please help?