I want to change the color of the bottom border using jquery..Thanks
|
feedback
|
| |||||||||
feedback
|
|
to modify more css property values, you may use css object. such as:
but if the modification code is bloated. you should consider the approach March suggested. do it this way: first, in your css file:
second, in your js code:
if ie 6 is not an issue, you can chain these classes to have more specific selectors. | |||
|
feedback
|
|
If you have this in your CSS file:
and a div for instance of:
you can use:
or you can just use
I prefer the first example, keeping all the CSS related items in the CSS files. | |||
|
feedback
|