Ich versuche zu überprüfen, ob ein Iframe geladen wurde, nachdem der Benutzer auf eine Schaltfläche geklickt hat.
ich habe
$('#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>
Irgendwelche Vorschläge?
Mein Iframe wird übrigens dynamisch erstellt. Es wird beim ersten Laden der Seite nicht geladen.