After all $(document).ready() have run, is there an event for that?

后端 未结 6 1266
眼角桃花
眼角桃花 2020-12-04 19:15

I have a first.js file included in the page index.php that have something like this:

$(function(){

    $(\"#my_slider\").slider(\"value\", 10);

});
         


        
6条回答
  •  醉梦人生
    2020-12-04 19:49

    Dont know how to tell when the last $(document).ready() function fired, but $(window).load() function fires after the $(document).ready()

提交回复
热议问题