I have a blank <a>
tag that content is loaded into via an external piece of javascript. I want to observe the <a>
and when its content changes perform another task. The content will only ever change once.
Can this be done?
I am using also using jQuery.
Thanks in advance
You can use a mixture out of jQuery && DOM Level 3 events (see browser support below).
If you want to check for any changes within the content, you could do this:
See this code in action: http://jsfiddle.net/wJbMj/1/
Reference: DOMNodeInserted, DOMAttrModified
While the above solution is actually pretty convinient to me, it'll only work in browser that support those events. To have a more generic solution, you can hook into jQuerys setter methods. The downside in this solution is, that you will only catch changes that were done through jQuery.
You could hook into
.text()
and.html()
the exact same way. You would need to check if thethis
value within the overwritten methods represent the correct DOMnode.