Can any one help me please, I have two sections of my question.
What I want to do is changing css class rules using jQuery on the fly.
.classname{color:red; font-size:14px;}
In example above I have a class named
.classname
now using jQuery I want to change the font size only not color with in.classname
not by adding css inline.I want to create and save
.classname
change to a file remember there will be complete stylesheet or no of classnames that will be save in file.
How I can do this the easiest and better way?
Thanks!