I have one CSS style sheet with rules like this:
h1, h2, h3, h4, .contentheading, .title{
font-size: 13px ;
font-weight: normal;
font-family: Arial, Geneva, Helvetica, sans-serif ;
}
The tags, classes are generated by plugin so i can’t add a single class to it.
So, is there any way that I can change the styles of all elements at once, at runtime, that doesn’t involve going through them one by one?
You can do multiple selectors in jQuery just like in Css. Maybe not the best performance-wise but will work.