Hi all.

Meanwhile I can do everything with jQuery I want to do, but one thing
I just can't get working and it would be awesome if someone could give
me a close to solution like hint, because I tried a lot now.

The google maps api has those info windows that open when you click a
button. Looks something like that in code:

google.maps.Event.addListener(map, "click", function(overlay, latlng)
{
  inputForm = '<input type="checkbox" id="ddd" />';
  map.openInfoWindowHtml(latlng,inputForm);
});

The infoWindows content is given as a HTML-String and I would like to
bind the checkbox' click, but I just don't know how to do that. Can
someone help me here??

Reply via email to