Is it possible and how can I listen for changes through the entire DOM tree with jQuery?
My specific issue: I have a \'tooltip\' function that displays the contents
My best guess is that you want to listen to DOM mutation events. You can do that by DOM mutation event as any normal javascript event such as a mouse click.
Refer to this : W3 MutationEvent
Example:
$("element-root").bind("DOMSubtreeModified", "CustomHandler");