I have a project I'm working on that performs many dom html javascript functions, for example:
this.firstChild.nodeValue = "example"; document.getElementById('id').innerHTML = "example";
There are many of them, and not all of them are the same. I want every time I assign a value / output to html, it uses jquery animate "fade in."
Is it possible to do without completing each task and do it manually?
Thanks.
source share