Hi,
I'm trying to get all of the links in my marker's InfoWindow to have a different behavior but I'm not able to grab them with jquery. When are they actually rendered to the dom? I'm currently calling them the
$(document).ready(function(){
function.
I also tried calling them directly after I create the markers.
createMarkers(mapInformation, map);
addLinks();
Neither work.
I'm trying to grab the links by:
$("a").click(function(event){
event.preventDefault();
});
Thanks, any help would be greatly appreciated!
~nv