Using Fusion Tables and GMaps(v3) with Jquery(v1.7.1).
Gmaps displays a layer using Fusion Tables data. The InfoWindow is populated using Fusion Tables information (configured in the Google Docs -> Fusion Table -> Configure Info Window interface).
At the bottom of the custom HTML of the FT Info Window is a link that reads:
<div><a class="detail" href=#><b>Click to see more detail</b></a>
</div>
I have JQuery testing to see if it is clicked and then executing code.
$('.detail').on('click', function(){
console.log('Click worked');
});
The JQuery code is inside the initialize function that runs on body "onload". I was using the .live jquery handler but that has been deprecated and was giving me problems anyways. The .on handler isn't firing though.
Any suggestions?