6D Labs / CQ Extended Tag Library / API / Tags / defer
Defers the writing of HTML until a WriteDeferred tag is evaluated. This is useful especially for JavaScript libraries which may be in components on the page, but should be evaluated at the end of the page for performance reasons.
Example:
<ext:defer id="a-script-block">
<script>
alert("Hello World");
</script>
</ext:defer>