For example if i have
<style type='text/css' id='divcolorgreen'>
div{
color: green;
}
</style>
I can disable the css rule using 3 ways
- removing the style element (reappend it to reenable)
- modifying it's inner html
- add the inline rule one by one to each elements (better using jquery)
Is there any easier way to disable/remove the css rule?