Answers for "get document width and height javascript"

23

javascript get element width and height

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

get document height js

let body = document.body, html = document.documentElement, 
    height = Math.max( body.scrollHeight, body.offsetHeight,
                      html.clientHeight, html.scrollHeight, html.offsetHeight );
Posted by: Guest on August-08-2021

Code answers related to "get document width and height javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language