tags:

views:

48

answers:

2

hi, can a javascript get the value of the div width from a css file,

if yes, then please tell me how :)

+3  A: 

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.

Mark Schultheiss
i have tried this ...
It is possible that div does not exits on page. So, question's author can create dom element with required attributes (for css); calculate width; remove dom element.
petraszd
A: 

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

Weston C