Here is my HTML code ..
Have a look at my reference HTML code
Now my Java Script code ..
Now my JS code gives me offsetHeight properly..means 700.
But offsetWidth is not ..
What's the cause ?
Code:
<iframe src="reference_page.html" id="test_fr"></iframe>
Code:
<body> <div style="height:700px;width:800px"> </div> </body>
Code:
var iFrame = document.getElementById('test_fr');
alert(iFrame.contentDocument.body.offsetWidth+'\t'+iFrame.contentDocument.body.offsetHeight);
But offsetWidth is not ..
What's the cause ?
Comment