I'm working on a project using the Google maps API, and I'm having a small issue with getting the info windows for markers to work properly. Basically, there are a bunch of markers (about 152 right now) on the map, and each one has an info window that shows up in a bubble when you click it. One of the things in that info window is a text box and button so that you can put in your address and get directions to the place the marker is marking. Unfortunately, when you click in the text box the bubble closes. I'm not entirely sure why that is, but I'm guessing it has something to do with the way I'm declaring my event listener (code below). Does anyone have any ideas or hints?
code:
GEvent.addListener(marker, 'click', function() {
marker.openInfoWindowTabsHtml(infoTabs);
});