Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

6 Answers

up vote 47 down vote accepted

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;
}
share|improve this answer

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';
share|improve this answer

Or, using a little jQuery:

$('#fieldID').css('background-color', '#FF6600');
share|improve this answer
var element = document.getElementById('element');
element.style.background = '#ff00aa';
share|improve this answer

Add this script element to your body element:

<body>
  <script type="text/javascript">
     document.body.style.backgroundColor = "#AAAAAA";
  </script>
</body>
share|improve this answer

KISS Answer:

document.getElementById('element').style.background = '#DD00DD';

z

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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