I have a page which has an Iframe. In that Iframe, there are six iframes. When I use
window.onload
or
document.observe(window, 'load', func) // of PrototypeJs,
does it mean that all the contents of Iframe and the other 6 iframes' content have been loaded?
If the answer is not, then how can I be sure that all my iframes content have been loaded.
[The iframes inside the iframe does not have any src. I am filling those Iframes from database content.]
Thanks.