Javascript : How to get width and height of a div?
Problem :
You have a <div>
and you want to get the dimension of the <div>
such as height and width. You want to ensure that the <div>
dimension is not being tempered by third-party browser's add-ons.
How to do that?
Solution :
Imagine you have a <div id="box">
with id = box. You can get the dimension with getElementById()
function to get the offsetWidth and offsetHeight properties.
For example :
the HTML :
<div id="box">
fill up something here
the more you fill... the higher
the height will be
<br>
<br>
</div>
and the Javascript :
var element = document.getElementById('box');
var height = element.offsetHeight;
alert(height);
var width = element.offsetWidth;
//alert(width)
See demo at http://codepen.io/anon/pen/KdVXLw
IF the height or width is below certain pixels, you can either prompt alert to your website visitors or redirect them to another page.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+55k Golang : Unmarshal JSON from http response
+37.3k Upload multiple files with Go
+27.5k PHP : Count number of JSON items/objects
+12.7k Golang : http.Get example
+16.3k Golang : How to implement two-factor authentication?
+15.7k Golang : Update database with GORM example
+19.2k Golang : Fix cannot download, $GOPATH not set error
+7.6k Golang : Lock executable to a specific machine with unique hash of the machine
+9.6k Golang : Find correlation coefficient example
+7.7k Golang : Regular Expression find string example
+12.4k Golang : HTTP response JSON encoded data
+14.3k Golang : How to check if your program is running in a terminal