How can I set the CSS background color of a HTML element via JavaScript?
|
1
|
|
|
|
|
|
In general, CSS properties are converted to JavaScript by making them camelCase without any dashes. So "background-color" becomes "backgroundColor". |
||
|
|
|
|
You might find your code is more maintainable if you keep all your styles, etc. in CSS and just set / unset class names in JavaScript. Your CSS would obviously be something like:
Then in JavaScript:
|
||
|
|
|
|
Or, using a little jQuery: |
||
|
|
|
|
|
||
|
|
