Jquery .live() and google maps
Hello chaps.
I have a event listener that listens for click events on a class.
$('.className').live('click', function() {
// Some JS
});
I have some content thats loads via AJAX that works fine using this. However when clicking on a link from a goggle maps plugin I have the javascript is not fired. It IS fired in FF/Chrome just not in IE.
Does anyone have any ideas why this may be happening? Is there some reason that the google maps link isn't registering with the eventLister/DOM in IE but is in FF/Chrome? And do you knwo a way around it...
Thanks in advance.
David