Does anyone know the equivalent of this event in IE ?
Or may be a way around for this logic:
document.addEventListener("DOMSubtreeModified", function (e) {
if ($(e.target).hasClass("myclass")) {
var getId= e.target.id;
}
}, false)
This works fine in FF, Chrome, Safari, IE 9 or higher.
Need an equivalent logic for IE8 and IE7