Delay load of iframe?

后端 未结 10 1517
悲哀的现实
悲哀的现实 2021-02-19 06:15

I know there are some tools and techniques for delaying the load of javascript, but I have an iframe that I would like to delay loading until after the rest of the page has fini

10条回答
  •  滥情空心
    2021-02-19 06:41

    with jquery it is easy!

    either enclose your code which loads the iframe within a $() or use $(document).ready(function(){}) these both are the same and would execute your code after the DOM is ready!

    e.g.

    $(document).ready(function(){
        $('iframe#iframe_id').attr('src', 'iframe_url');    
    });
    

    see more at http://www.learningjquery.com/2006/09/introducing-document-ready

提交回复
热议问题