Javascript examples for DOM HTML Element:IFrame
IFrame height Property - Return the height of an iframe:
<!DOCTYPE html> <html> <body> <iframe id="myFrame" src="http://java2s.com" height="200" width="250"></iframe> <button onclick="myFunction()">Test</button> <script> function myFunction() {/*from w w w.ja v a 2s .c om*/ var v = document.getElementById("myFrame").height; console.log(v); } </script> </body> </html>