I have a composite (as in xmlns:composite="http://java.sun.com/jsf/composite"). I call it via
<comps:cimgx imgId="imA" flav="r" />
(for example) on a page. Is there a way to reference all html-objects generated by this composite, client-side via javascript?
Something like
window.document.getElementsBy_magic_jsf_tagType("comps.cimagx");
Edit: or within the composite as something like
#{cc.JSF_tag_type_name}
??
Edit2: For the background why I'm asking this, see Is it possible to add a javascript function to a h:form in jsf2?