I have the following CSS
.EggChart {
width: 5000px;
height: 400px;
}
and would like to read the value of height
from the CSS class specification, either using raw JavaScript or in jQuery. If the class has been applied to an element of the DOM this seems straightforward: I'd select the elements of the DOM with this class and read their CSS attributes, but if the class has not been applied to any DOM element how would I do this?