Solved
gettting path of CSS / JS from clientLib category name programatically
Hi all,
Hope everyone is doing fine !
In JSP usually if we have to include clientLib then we use below statement
<cq:includeClientLib js="personalization.ui"/>
And then these gets translated to actual script tags
<script type="text/javascript" src="/etc/clientlibs/ personalization.js"></script>
Is there any way to get the path of JS referred by the clientLib category name using code ?
ie., I pass "personalization.ui" and it returns me back "/etc/clientlibs/ personalization.js"
We have to do some further processing on this JS path so we need this.
Thanks in advance.