Estoy tratando de verificar si se ha cargado un iframe después de que el usuario hace clic en un botón.
yo tengo
$('#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>
¿Alguna sugerencia?
Por cierto, mi iframe se crea dinámicamente. No se carga con la carga de la página inicial.
Click
—
Viktor S.