Reputation: 782
I have two or more iframe on the same page. I have to load all iframe at once and appear in same time. Currently it loaded one by one. I want to load all at once and asynchronous with page loading.
Upvotes: 0
Views: 1473
Reputation: 1798
I think this link will greatly help you. It's a nice detailed explanation of the iframe techniques and performance issues and might just what you are looking for. As mentioned in the above answer and in this link here, the onLoad function call is what you are going to need.
Upvotes: 0
Reputation: 5212
loaded
and check on finish is all iframe has
this class.Here you can find example of usage onload method: demo
Upvotes: 1