на странице полностью загружено jQuery
$(window).load(function () {
....
});
If you have to wait for an iframe (and do not care about the assets, just the
DOM) - try this:
$(document).ready(function() {
$('iframe').load(function() {
// do something
});
});
Lokesh003Coding