1$(window).load(function () {
2 ....
3});
4
5If you have to wait for an iframe (and do not care about the assets, just the
6DOM) - try this:
7
8$(document).ready(function() {
9 $('iframe').load(function() {
10 // do something
11 });
12});