Jump to content

How would I go about highlighting changed things


Rifts

Recommended Posts

You can apply a background color to the option in question:

HTML:

<select name="select">
<option value="1" >id1</option>
<option value="2" class="changed">id2</option>
<option value="3" >id3</option>
</select>

CSS:

option.changed
{
  background-color:red;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.