maplace.js
maplace.js copied to clipboard
Event domready Infowindow
How to attach the event domready for the infowindow?
This is the google maps way:
google.maps.event.addListener(infowindow, 'domready', function() {
//Code
});
If you are using Maplace inside standard jQuery function it assumes the DOM is already available:
$(function() {
// Maplace here
});
I think things are different, the InfoWindow DOM will not be ready together with the DOM of the page