Answers for "when i'm getting the element how can i get the width of that element in js"

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 "when i'm getting the element how can i get the width of that element in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language