I'm working on a plugin that extends the change event to detect when non-input elements are modified. For example, when a span tag has new content added/changed/removed.
I've got some of the basic behaviors working well using DOM Mutation events in FF, Safari, and Chrome. IE 6/7 is being its typical self. pbbbbt... Does anyone know of an event that fires in IE when a node is removed? My initial line of inquiry is using onreadystatechange but I'm not getting anywhere with it just yet.

