вот моя проблема: размер моего iFrame должен варьироваться в зависимости от размера div в нем, и когда я пытаюсь получить размер этого div, все, что я пытаюсь, возвращает 0
var childiFrame = document.getElementById("myDiv");
console.log(childiFrame,"here is my iframe");
var innerDoc = childiFrame.contentWindow.document;
console.log(innerDoc,"here is the innerDoc where i have to find my div");
mdDiv =innerDoc.getElementById("md");
console.log(mdDiv,"here is my div !");// and i can see the clientHeight =245
var divHeight = mdDiv.clientHeight; // or offsetHeight or scrollHeight
console.log(divHeight,"the div height always equals 0 !");
I Я не видел, чтобы кто-нибудь говорил об этой проблеме, поэтому, если у кого-то есть идеи, я возьму это!