Hi,
Can you try something like this:
<div id="test" runat="server">hellow</div>
Put the following line inside a JavaScript function:
function SetBGColor()
{
document.getElementById("test").style.backgroundColor = "#FFFFCC";
}
Just call the function written above as required.
I hope this may solve your problem.