javascript take width of a div code example
Example 1: javascript get width of a div
document.getElementById("mydiv").offsetWidth
Example 2: 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;