In content page, the jquery document ready event fires before the content page is loaded.

Posted by Vladimir Georgiev on Stack Overflow See other posts from Stack Overflow or by Vladimir Georgiev
Published on 2010-06-07T09:09:10Z Indexed on 2010/06/07 9:12 UTC
Read the original article Hit count: 277

Filed under:
|
|

I have a master page that references jquery + jqueryui. Everything is fine. In the content page I placed:

  $(document).ready(function () {
        $("#tabs").tabs();
    });

It turns out that the ready event fires BEFORE the html of the content page is loaded :/. So, how to determine when the whole content page is loaded ?

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about pages