views:

35

answers:

1

I'm using this :

Event.observe('${action.extUnenrolledListId}List', 'DOMNodeRemoved', function(event) {

}

It works in Firefox, but in IE8 the DOMNodeRemoved event isn't recognized. Any ideas about an alternative?

Greetings, Niek

A: 

No. IE up to and including version 8 does not support any of the DOM mutation events. There's no equivalent.

Tim Down