I have a form on my main page (main.html) with the target set to an iframe on that page. The action of the frame on the main page is a php file. So, the php file displays in the iframe basically.
Şimdi, içerik yüksekliğini almak için php dosyasında bu komut dosyası var:
var x = document.body.scrollHeight;
window.parent.document.getelementbyid("iframe001").style.height=x;
If I alert x, the scrollheight is there, so x IS the scrollheight definetely. That part works. But, I cant set that value to the height of the iframe (iframe001).
Bunu yapamam neden herhangi bir fikir? Ve bunu nasıl?
Teşekkürler