Good day,
I need to check if a website has loaded completed, including AJAX.
For all other frameworks I found a way to verify it, except for A4J.AJAX.
// DOM
document.readyState=='complete';
// jQuery
jQuery.active==0;
// Ajax
Ajax.activeRequestCount==0;
req.readyState==4;
// Dojo
dojo._inFlightCount==0;
// A4J???
...
Is there a similar way for A4J to determine its readiness? I googled about it but had no success. I cannot use a finished method of A4J because I would like to use a javascript variable that has the boolean true or false to evaluate if the page's ajax has finished loading.
Thanks :)