OPTGROUP is cool!

2007-08-22 @ 13:26#

stumbled upon the <OPTGROUP> element today. never knew you could do that!

<select> <option>-- select --</option> <optgroup label="local"> <option value="1">here</option> <option value="2">there</option> </optgroup> <optgroup label="international"> <option value="3">everywhere</option> </optgroup> </select>

code