I don't think so there is any such event across all the browsers. I would go with a custom event and trigger it whenever I manipulate the dom.
//Subscribe to domChanged event
$(document).bind('domChanged', function(){
alert('Dom changed');
});
//Trigger the domChanged event
$(document).trigger('domChanged');