I need to know when the content of a DOM node changes. Luckily, I can be sure that all these changes will happen by a call to .text(val) or .html(val).
Is it possible to make jQuery send events when these two functions are called?
|
You could overload the
Now we override the current
Now we do some example useage, and then we do textLogger.displayLog() to see our results in the console. You'll see the entire jQuery selector / context / IDs in there, in an Array.
EDIT Updated the jsFiddle to show how to trigger / respond to a custom event when a text changes. |
|||||||
|
|
You could extend the jQuery functions
|
|||
|
|
|
Yes, it is possible, though depending on how you use said methods it may not be efficient.
|
|||
|
|
|
If you really needed to accomplish this, you could consider monkey-patching jQuery. The basic gist EDITED - taken from the referenced link:
It's pretty heavy-handed, so I'd only consider it if it's the only way to get what you need, and you'd have to be pretty careful about jQuery API changes. |
|||||||||||||
|
.text(val)and.html(val)and have them do what the event handlers would do. – Archer Jan 15 at 16:44