Javascript examples for DOM:Element clientHeight
The clientHeight property returns the viewable height of an element in pixels, including padding, but not the border, scrollbar or margin.
This property is read-only.
A Number, representing the viewable height of an element in pixels, including padding
The following code shows how to get the height and width of a <div> element, including padding:
<!DOCTYPE html> <html> <head> <style> #myDIV {// www . j ava 2 s . c o m height: 250px; width: 400px; padding: 10px; margin: 15px; border: 5px solid red; background-color: lightblue; } </style> </head> <body> <button onclick="myFunction()">Test</button> <div id="myDIV"> test test <p id="demo"></p> </div> <script> function myFunction() { var elmnt = document.getElementById("myDIV"); var txt = "Height including padding: " + elmnt.clientHeight + "px<br>"; txt += "Width including padding: " + elmnt.clientWidth + "px"; document.getElementById("demo").innerHTML = txt; } </script> </body> </html>