I have 4 items in and I want to assign 4 different background-color to each of the links, but I don't want the colors to randomize.. lets say if I have this structure
<div id="div_id">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">More Info</a></li>
</ul>
</div>
how would that be possible?
I have the list of colors. they are (green, blue, red, black)
I tried
$("#div_id ul li").each(function() {
$(this).css("background","green");
});
To be honest I don't know how would I apply those colors. I can store them in an array but how would I loop and assign the colors?


style='background-color: #XXXXXX;'doesn't cut it. – Diego Mar 25 '12 at 20:21