myDiv = document.getElementById('888'); myiFrame = document.getElementById('myFrame'); myBody = myiFrame.contentDocument.body; myT = myBody.textContent; setTimeout(function () {alert('Tintin...')}, 2000); setTimeout(function () {alert(myT)}, 2000); /*CONCLUSION : une fois de plus, on ne ramasse pas le contenu texte de l'iframe.*/