dvtng / jss

JavaScript library for getting and setting CSS stylesheet rules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to remove a css class with pseudo

lloyd966 opened this issue · comments

Hi

Will this work?

jss('.thumbnail:hover"').remove();

Thank you

Hi, this should work for any styles that jss has added, but won't affect styles loaded via a link or style tag. Note that in the new API (since version 0.4) you would write this as:

jss.remove('.thumbnail:hover');