> The tweet script is loaded into a hidden DIV and then clones that div > into the infoWindow. I have the code working but the infowindow > updates a wee bit late and displays what was previously in the div.
Another way to look at it, is that the openinfowindow is called too early ; presumably you expected the script you've just added to execute before the infowindow opens, but there is no opportunity for it to run while the click handler is still running. Try calling the infowindowopen using a short settimeout (just 1?) so that it gets queued behind the new script execution. -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
