You need to bind a function to the DOMSubtreeModified mutation event:
$(document).bind('DOMSubtreeModified', function () { <Code to Execute> });
If your target browsers support it, you should use a MutationObserver instead.
You need to bind a function to the DOMSubtreeModified mutation event:
$(document).bind('DOMSubtreeModified', function () { <Code to Execute> });
If your target browsers support it, you should use a MutationObserver instead.