0

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?

Aamir
  • 14,882
  • 6
  • 45
  • 69

1 Answers1

0

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
  • 1,150
  • 7
  • 14