I have this html code
<p>
<label for="contact">Contact name<span class="required"> *</span></label>
<select name="contact" id="contact" onClick="clearSelect(this,'contact')">
<option value="">Select Contact</option>
<?php foreach ($contacts as $contact): ?>
<option value="<?php htmlout($contact['id']); ?>"
<?php if ($contact['id'] == $contactID) echo ' selected="selected"';
?>><?php htmlout($contact['name']); ?></option>
<?php endforeach; ?>
</select>
</p>
and this jQuery function
function clearSelect(thisfield, id) {
$j("#" + id).css("background-color","#FFF");
$j("#" + id).css("border","1px solid #CCCCCC");
$j("#" + id).css("color","#000000");
}
When I click the select book the background of the select box changes to white but the drop down list stays the same color until you scroll down it.
Any ideas how to change all the option background colors to white when the select box is clicked?