I need help, I want to get element:hover all styles. For example:
<style type="text/css">
a {color: red;}
a:hover {color: blue;}
</style>
Using jquery we can find "a" element default style:
$('a').css('color');
and it will be return as string: "red";
But now I want to get pseudo styles, like this:
$('a:hover').css('color');
and it will be return "undefined", but we need "blue".
Please help me solve this problem...