How to wait for div to load before calling another function?

后端 未结 3 979
猫巷女王i
猫巷女王i 2021-01-01 17:25


        
3条回答
  •  温柔的废话
    2021-01-01 17:51

    Use load callback

    $("#tempMain").load($(this).attr("href"),function(){
       resizeDivs();
       // do other stuff load is completed
    });
    

提交回复
热议问题