Answers for "set width and height of div javascript"

23

Javascript get element height and 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
7

javascript set div height

document.getElementById("myBtn").style.height = "50px";
Posted by: Guest on February-13-2020
7

javascript set element width

document.getElementById("myElID").style.width = "100px";
Posted by: Guest on October-26-2019

Code answers related to "set width and height of div javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language