Reputation: 3551
I have a class in CSS:
.class {
color: #fff;
background: #000;
border-bottom: 1px solid #ff0000;
}
With jQuery how can I edit that class and create a new class like the below?
.class {
color: #777777;
background: #fff;
}
Upvotes: 0
Views: 37