Access all CSS Styles for Pseudo Selector in JQuery?
- by viatropos
If I define the up and over states of a button like this:
.button {color:red;}
.button:hover {color:blue;}
How can I get all the hover state styles for an element using JQuery?
Something like $(".button:hover").styles...