ユーザーがボタンをクリックした後に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は動的に作成されます。最初のページの読み込みでは読み込まれません。
クリック
—
Viktor S.