views:

536

answers:

2

I have one page .aspx, and in page , I have put an iframe on header page.

Is it possible that iframe loads after page load finishes?

A: 

You can leave the src of the iframe empty then use Javascript to change the src when the document loads.

<body onload="function_to_change_iframe_src()">
    <iframe src=""></iframe>
</body>
sakabako
A: 

This post may help answer your question: http://stackoverflow.com/questions/164085/javascript-callback-when-iframe-is-finished-loading.

Tim S. Van Haren
yes, thanks you