html5 - How to mimic required for select field -
i want mimic required select field too. required field works select field if first option empty. still cant see box says "please fill out field"
is there hack or way can add required box select field similar have input field in html5
required attribute works on <select>. if want force user make choice here, create option blank value (fiddle).
<select name="choice" required> <option value="">none</option> <option value="1">one</option> <option value="2">two</option> </select> 
Comments
Post a Comment