vote up 4 vote down star
1

How can I set the CSS background color of a HTML element via JavaScript?

flag

4 Answers

vote up 19 vote down check

In general, CSS properties are converted to JavaScript by making them camelCase without any dashes. So "background-color" becomes "backgroundColor".

function setColor(element, color)
{
element.style.backgroundColor = color;
}
link|flag
vote up 4 vote down

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:

.highlight { background:#ff00aa; }

Then in JavaScript:

element.className = (element.className === 'highlight' ? '' : 'highlight');
link|flag
vote up 3 vote down

Or, using a little jQuery:

$('#fieldID').css('background-color', '#FF6600');
link|flag
vote up 1 vote down
var element = document.getElementById('element');
element.style.background = '#ff00aa';
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.