How can we get the height of a iframe using javascript from within the iframe in firefox.
I have tried using window.innerHeight, but is returning the total window height
I need the height of the iframe not its parent window
How can we get the height of a iframe using javascript from within the iframe in firefox.
I have tried using window.innerHeight, but is returning the total window height
I need the height of the iframe not its parent window
You can reference the iframe by its id, using something like:
document.getElementById('iframeId').innerHeight()