html select required message

Solutions on MaxInterview for html select required message by the best coders in the world

showing results for - "html select required message"
Eamon
21 Oct 2018
1<select name="color" id="color">
2	<option value="" selected disabled hidden>Choose color...</option>
3    <option value="R">Red</option>
4    <option value="B">Blue</option>
5</select>