Nessuno che può aiutarmi?

Ho letto questo articolo.. in cui dice di provare a inserire l'iframe o il src.. soltanto dopo il caricamento della pagina! Voi cosa ne dite?

Grazie!!

Codice PHP:
 Post a stripped down version of the page if you canOne that shows exactly how the iframe fits into the structure of the page.

The solution I settled on works like this:
The parent page has a javascript function like this:

function 
insertIt() {
var 
_y document.getElementById('framediv');
var 
_x window.frames[0].document.body.innerHTML;
_y.innerHTML _x
}
Thenthe parent page has a div with the id "framediv" which is placed where the contents of the iframe should appear on the page.
The iframe element is then placed inside the divlike this:

<
div id="framediv">
<
iframe onload="insertIt();" src="/somewhere/content.htm" frameborder="no" width="555px" scrolling="no">
</
div>

As 
you can seethere's onload="insertIt()" inside the iframe element. So when the iframe loads, the parent page immediately takes the contents of the body of the document contained in the iframe and actually replaces the iframe element with that content.

It'
s a little tricky to comprehendbut it works great.

You said you're a newbie, does this make any sense to you?

also, is the iframe document located on the same server and the same domain as the parent page?
That will play a part.