[jQuery] Access css style sheet properties directly
For instance, I have the following css code on my style sheet:
div#cpblock-links a:link,
div#cpblock-links a:visited,
div#cpblock-links a:active {
color: #ffffff;
text-decoration: none;
}
div#cpblock-links a:hover {
color: #535f68;
text-decoration: none;
}
If I access one of the links inside the #cpblock div and use the $
().css method, I can get the link color, but how do I get the link
color from when the mouse is over the links without really moving the
mouse over the link?
I need to get that value from the css before it displays at all in the
browser.
Is there any way I can read (I just need to read) properties values
from the css file directly?