I am using jsf 1.2 with a4j. when any AJAX request is generated GIF animated images are being displayed on the page.
<a4j:status>
<f:facet name="start">
<h:graphicImage value="/images/ajaxLoading.gif"
style="float:right;position:absolute;
width:200px;top:100px;left:250px;"/>
</f:facet>
</a4j:status>
it is all working fine but the requirement is, till the response come if user opens the same URL in new window (Here I am specific to IE8 because IE8 keep same session in new window) then same state of the page or same image should be displayed. But it is not being displayed for my page.
Kindly suggest some solution.......