Thanks for the reply. Wouldn't this mean though that the script is
loaded as many times as there are components present on the page since
calling the clientlib.html actually generates tags at the
location it is called?In a context where you have 3 components that
include a clientlib with listeners, the script would try to bind them 3
times, while the initialization should only occur once for all
components. Let's assume these components rely on jQuery, if you include
jQuery at the location the clientlibs are loaded, it's possible that
jQuery is loaded very soon in the DOM rendering process, while ideally
it should be loaded after all the content.How do you deal with a
situation like this when lining up with #2? Thanks again!