Answers for "how to get the width of a div in javascript"

23

javascript get element width

var width = document.getElementById('myID').offsetWidth;//includes margin,border,padding
var height = document.getElementById('myID'). offsetHeight;//includes margin,border,padding
Posted by: Guest on July-26-2019
2

javascript get width of a div

document.getElementById("mydiv").offsetWidth
Posted by: Guest on June-22-2020
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
0

how to get width in javascript

int screenHeight = screenSize.height;
int screenWidth = screenSize.width;
Posted by: Guest on September-10-2020

Code answers related to "how to get the width of a div in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language