html select required message

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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>