Check hover's selectors from css style

Check hover's selectors from css style


Hi people,

I'm having a question with selectors from css style. I would like to verify if a css class has an hover selector.

follows the example:

.class{
background-color:#999;
}
.class:hover{
background-color:#888;
}

if (.class has 'hover selector') then do it

My purpose is manipulate hover effects directly from css styles, effects like fade with a simple addition of a hover's selector into the css styles.