We have a4j:outputPanelthat ajaxRendered. Is there a way to call the javascript function every time it is (re) displayed? I know that we could put a call into every element that could be sent using oncomplete, but this is really almost impossible.
More details:
Example (oncomplete is not actually available in the outputPanel tag):
<a4j:outputPanel ajaxRendered="true" oncomplete="myJSFunc()">
<h:outputText value="Test-aroo" />
</a4j:outputPanel>
Refresh Can the jQuery library be able to help (it is built into RichFaces)? I am looking at using .live () to register for an incomplete event. I will continue to experiment and update with progress.
jQuery, , myJSFunc(), .