I have a css file this is a portion of it:
/* trackaccept.css */
div.track {
width:400px;
height: 100px;
}
I have this in my ASP page:
<link rel="stylesheet " type="text/css" href="/includes/trackaccept.css "/>
I need to read the values for width and height in my page. How do I acess those values using JavaScipt? Thanks.
I have a length of 2 for CSS objects so I don't know whether it is 0 or 1 I'm assuming 0.since I don't have any other external CSS statements. The other is declared in the page as <style></style>
--
George Hester
_______________ _______________ ____
/* trackaccept.css */
div.track {
width:400px;
height: 100px;
}
I have this in my ASP page:
<link rel="stylesheet " type="text/css" href="/includes/trackaccept.css "/>
I need to read the values for width and height in my page. How do I acess those values using JavaScipt? Thanks.
I have a length of 2 for CSS objects so I don't know whether it is 0 or 1 I'm assuming 0.since I don't have any other external CSS statements. The other is declared in the page as <style></style>
--
George Hester
_______________ _______________ ____
Comment