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> 

enter image description here


Comments

Popular posts from this blog

assembly - 8086 TASM: Illegal Indexing Mode -

Java, LWJGL, OpenGL 1.1, decoding BufferedImage to Bytebuffer and binding to OpenGL across classes -

javascript - addthis share facebook and google+ url -