How can I set the CSS background color of an HTML element via JavaScript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
|
||||
|
|
|
|||
|
|
|
Add this script element to your body element:
|
|||
|
|