is there any way to trigger event (may be custom) on attribute change?
Let's say, when IMG src is changed or DIV's innerHtml?
|
is there any way to trigger event (may be custom) on attribute change? Let's say, when IMG src is changed or DIV's innerHtml? |
|||
|
|
|
You are referring to DOM Mutation Events. There is poor (but improving) browser support for these events. Mutation Events plugin for jQuery might get you some of the way. |
|||||||||||||
|
|
If you only need something specific then a simple
Then bind to the custom "srcChange" event:
|
|||||
|
|
There is no native dom changed event you can hook into. Good article here which tries to provide a solution in the form of a jquery plugin. Code from article
|
|||
|
|