[jQuery] Can't get ActiveX custom event in IE using jQuery

[jQuery] Can't get ActiveX custom event in IE using jQuery


Hello,
I have a handler for a custom ActiveX control event that I can
successfully register for in IE using the following code:
this.activeXObj.attachEvent("PlayerInitialized", this.handlerFunc);
When I use the code above I get the event in my handler. I am now
trying to use jQuery to attach the event handler like this:
$(this.activeXObj).bind("PlayerInitialized", this.handlerFunc);
With the jQuery code I never receive the event.
Can anyone tell me what I am doing wrong?
Thanks,
Mark