I want to have a <select>
element with no items selected/checked. On Windows this is easy, you just don't specify a selected
attribute. On OSX, it automatically puts a checkmark on the first item even if there is no selected
attribute. Is it possible on OSX to have a select element with no items selected by default? Even if the first item is blank, it still puts a checkmark on it.
<select>
<option>First</option>
<option>Second</option>
<option>Third</option>
<option>Fourth</option>
<option>Fifth</option>
</select>