“jQuery verifique se o iframe está carregado” Respostas de código

jQuery verifique se o iframe está carregado

$('#myIframe').on('load', function(){
    //your code (will be called once iframe is done loading)
});
SamuraiR4cc00n

jQuery quando o iframe é carregado

<script>
function checkIframeLoaded() {
    // Get a handle to the iframe element
    var iframe = document.getElementById('i_frame');
    var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;

    // Check if loading is complete
    if (  iframeDoc.readyState  == 'complete' ) {
        //iframe.contentWindow.alert("Hello");
        iframe.contentWindow.onload = function(){
            alert("I am loaded");
        };
        // The loading is complete, call the function we want executed once the iframe is loaded
        afterLoading();
        return;
    } 

    // If we are here, it is not loaded. Set things up so we check   the status again in 100 milliseconds
    window.setTimeout(checkIframeLoaded, 100);
}

function afterLoading(){
    alert("I am here");
}
</script>

<body onload="checkIframeLoaded();"> 
CertainBadProgrammer

Respostas semelhantes a “jQuery verifique se o iframe está carregado”

Perguntas semelhantes a “jQuery verifique se o iframe está carregado”

Mais respostas relacionadas para “jQuery verifique se o iframe está carregado” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código