Is it possible to edit/modify existing css rules using javascript or jquery? For instance, the stylesheet has this class:
.red {
color: red;
}
And I have 10 elements using the class.
What I would love to do, is to edit the class like this:
.red {
color: blue;
}
So that it will also effect the future instances of the same class. (11th, 12th, 13th elements and so on).