vote up 1 vote down star

My question is somewhat weird, but can i add events for any DOM elements(div), like 'onHtmlChange', to be notified when that div has changed their content?

flag
Ideally, you shouldn't ever require such an event. What exactly would make the HTML of any given element change? – J-P Aug 24 at 22:02
GMaps is feeding an DIV with his content. But the root of my question is just to mimics a dataflow programming approach :P – Frangossauro Aug 24 at 23:33

1 Answer

vote up 1 vote down

Check out DOMNodeInserted and DOMNodeRemoved.

Ben Nadel recently blogged the following: Detecting When DOM Elements Have Been Removed With jQuery

link|flag
Seems like the OP wants to know when HTML content inside of the divs has changed though. – seth Aug 24 at 20:58
@seth —Browsers which use the W3C model should fire both DOMNodeInserted and DOMNodeRemoved when changing a node's contents, even it it's just text nodes (just tested FF3). The IE trick mentioned in the linked article could easily be extended to .html() and .text() to mimic this. – Ben Blank Aug 24 at 21:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.