1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<html> <head> </head> <body> <h3 id="h3"></h3> <div>Div</div> <script> document.documentElement.offsetHeight; n = document.getElementById("h3"); n.appendChild(document.createTextNode("Header")); </script> </body> </html>