[jQuery] Re: listening for any dom change

2009-04-05 Thread will
Thank you Ricardo. I could do a callback but there are a number of different types of things that get inserted so it's spread out across a number of functions. And these will likely grow with time. I think what I'm realizing is that what started as a "what would happen if I..." idea has now turne

[jQuery] Re: listening for any dom change

2009-04-05 Thread Ricardo
Firefox has events for node insertion etc: https://developer.mozilla.org/En/DOM_Events but they are not available to IE, and can incur in significant overhead for the page. If you're in control of the whole app's code, couldn't you just add a callback for when a widget is added? On Apr 5, 2:08