Posts Tagged ‘optgroup’

html optgroup

Tuesday, December 16th, 2008

Just discovered recently the <optgroup> html tag, allowing to group select options:

<select>       
      <optgroup label="Swedish Cars"> 
        <option value="volvo">Volvo</option>
        <option value="saab">Saab</option>       
      </optgroup>       
      <optgroup label="German Cars">
        <option value="mercedes">Mercedes</option>
        <option value="audi">Audi</option>
      </optgroup>
</select>

(example from w3school)
Pretty basic, but handy!