Does delegate() work in IE at all?

Does delegate() work in IE at all?

Hi,

I'm trying to get a delegate() event to fire in IE (any version) with no joy. The code below works in Firefox, Safari and Chrome:

$('#gmap').delegate('a.removepoint','click', function(event){  
       alert('Remove');                                      
     return false;  
   });

The link <a class="removepoint" href=""/> is created inside the infoWindow of a GoogleMap.

My understanding is that delegate() should find this, even though it's been created after the document.ready(), yet IE will not pick it up.

Is this a known issue, and is there a solution?