My site (www.ultramapper.com)

The URL that I have keeps adding a prefix of "www.ultramapper.com",
you can see in my code below, that I have checked the values of the
html string, which is fine.

Can anybody please explain what I am doing wrong?

Thanks!

   function createMarker(event_name, event_url, event_date,
event_type, event_city, event_state, point) {
      var marker = new GMarker(point, customIcons[event_type]);
//alert(event_url);
      var html = event_date+'<br><font =+1><b>' + event_name + '</b></
font> <br><a href=\"' + event_url + '\" target=_blank>' + event_url +
'</a> <br>'+event_city+', '+event_state;
//alert(html);
      GEvent.addListener(marker, 'click', function() {
        marker.openInfoWindow(html);
      });
      return marker;
    }

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to