Answers for "how to get document width in js"

6

get width of a dom element js

// 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