Hi Guys,
I have the follow HTML
<div>This is some <span>special <a href="#">text</a></span> and it's super</div>
And CSS
span {color:#333;}
a {color:#777;}
a:hover {color:#AAA;}
I am wondering what I can use to setup a function that I can extract the color of the <a> and <a>:hover elements?
Thanks