How do I include a JavaScript code only once for multiple usages of a composite component on a page?

Initially I had put I put the JS code inside the cc:implementation tags but that lead to the script being included each time with the components. I want to avoid this condition and include the JavaScript only once even if component has been used multiple times on a page.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Include the static part of that JS code as a standalone JS file by <h:outputScript>. It'll be rendered into <h:head> just once.

<cc:implementation>
    <h:outputScript name="js/myCompositeHelper.js" />
    ...
</cc:implementation>
link|improve this answer
awesome! thanks. – user Sep 13 '11 at 4:04
You're welcome. – BalusC Sep 13 '11 at 12:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.