Sto cercando di verificare se un iframe è stato caricato dopo che l'utente ha fatto clic su un pulsante.
io ho
$('#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>
Eventuali suggerimenti?
A proposito, il mio iframe viene creato dinamicamente. Non viene caricato con il caricamento della pagina iniziale.