I have a page with a .css file associated with it. Let's say it has this content:
.wrapper {
color:red;
}
Is there a way to read the runtime value of a .wrapper element in code?
the problem is that the runtime is linked to a different stylesheet, so wwpper is always available, but the content is always different.
what I want to accomplish is to get a value (in this case: color: red;) from the currently attached stylesheet.
Is it possible?
EDIT: is this possible on the client side, then I can somehow put it in a hidden field
source
share