Skip to content Skip to sidebar Skip to footer

Can A Javascript Get The Value Of The Div Width From A Css File

can a javascript get the value of the div width from a css file, if yes, then please tell me how :)

Solution 1:

CSS files TELL what to set. The DOM (Document Object Model) HAS what it is currently which is the document.

var mydiv = document.getElementById("mydiv");
var curr_width = parseInt(mydiv.style.width); // removes the "px" at the end

Makes the assumption your have a div with id="mydiv"

edit1: There are also these:

document.getElementById("mydiv").clientWidth;
document.getElementById("mydiv").offsetWidth;

Edit2: just because it will probably come up: offsetWidth will include the width of any borders, horizontal padding, vertical scrollbar width, etc.

Solution 2:

You're probably looking for some of the methods/properties associated with the StyleSheetList object stored in the document.styleSheets property.

See:

http://www.javascriptkit.com/domref/stylesheet.shtml

Post a Comment for "Can A Javascript Get The Value Of The Div Width From A Css File"