Я намагаюся перевірити, чи завантажився iframe після того, як користувач натисне кнопку.
У мене є
$('#MainPopupIframe').load(function(){
console.log('load the iframe')
//the console won't show anything even if the iframe is loaded.
})
HTML
<button id='click'>click me</button>
//the iframe is created after the user clicks the button.
<iframe id='MainPopupIframe' src='http://...' />...</iframe>
Будь-які пропозиції?
До речі, мій iframe створюється динамічно. Він не завантажується при початковому завантаженні сторінки.
Клік
—
Віктор С.