JQuery - Wait for two iframes to load

后端 未结 3 614
渐次进展
渐次进展 2020-12-21 23:14

I have a button that loads two different pages in two iframes. I need to wait for those loads to complete (like ready(), don\'t care about images and other content) and the

3条回答
  •  执笔经年
    2020-12-22 00:10

    In my opinion, the safest solution might be to have a parent iframe that would embedd both iframes and wait for the entire page (the parent page) to load :

    $(parent).load(function(){
       ... //if you get there then the 2 iframes are already loaded
    }
    

    The drawback is that it's a lot of iframes

提交回复
热议问题