actually, 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.