Is it possible to dynamically add :hover effects using jQuery in a CSS stylesheet?
Here is a basic example:
a.bar {
color: green;
font-size: 13px;
}
a.bar:hover {
color: purple;
font-size: 14px;
}
How can one access the color and font-size values before hovering over the anchor link?