Q:

how to get width in 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;
2
int screenHeight = screenSize.height;
int screenWidth = screenSize.width;
1

New to Communities?

Join the community