Answers for "get height of a div"

23

get height of div use js

var width = document.getElementById('myID').offsetWidth;//includes margin,border,padding
var height = document.getElementById('myID'). offsetHeight;//includes margin,border,padding
Posted by: Guest on July-26-2019
2

find div height in javascript

//includes margin and padding
document.getElementById('myDiv').offsetHeight;
//without margin and padding
document.getElementById('myDiv').clientHeight;
Posted by: Guest on November-21-2020
-1

how to get the height of a div in css

var clientHeight = document.getElementById('exampleElement').clientHeight;
alert(clientHeight);

var offsetHeight = document.getElementById('exampleElement').offsetHeight;
alert(offsetHeight)
Posted by: Guest on June-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language