Answers for "js detect height of element"

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
6

get element size javascript

// Get Content + Padding + Border
let box = document.querySelector('div');
let width = box.offsetWidth;
let height = box.offsetHeight;

// Get Content + Padding only
let box = document.querySelector('div');
let width = box.clientWidth;
let height = box.clientHeight;
Posted by: Guest on April-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language