Are there any DOM mutation events in JQuery or in vanilla Javascript that fire cross browser?
To clarify, say I have a script on my page which inserts a div into the
JCADE (JQuery Create and Destroy Events) will do this. It uses behaviors for IE and DOM mutation events for other browsers. It does not use timing events and does not wrap JQuery methods like livequery.
https://github.com/snesin/jcade
$( document ).create( "a", function( event ) { alert( event.target ); });