In content page, the jquery document ready event fires before the content page is loaded.
- by Vladimir Georgiev
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 ?