5 ms·
I think he meant faster as in executed before, rather than in executed faster.
by locci 15y ago
I think he meant faster as in executed before, rather than in executed faster.
- julian37 15y agoStill doesn't answer the question: how much earlier is it executed? I would like to know.
- locci 15y agoactually, the script doesn't make any sense because it would be executed as soon as the browser is idling, that is after it has rendered the dom completely, that is when the DOMContentLoaded event fires. The right way to run a script right after an element has been created is to place the script right after the element closing tag. You still can use it for setting late binding event handlers though.
- Encosia 15y agoIt's using DOMNodeInserted (when available), which does fire as each element is created.