Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html select required

<select name="color" id="color" required>
	<option value="" selected disabled hidden>Choose color...</option>
    <option value="R">Red</option>
    <option value="B">Blue</option>
</select>
Comment

select required

<label for="cars">Choose a car:</label>

<select name="cars" id="cars" required>
  <option value="">None</option>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>
Comment

required option for select tag

<!--- This option cannot be select and this will be default option too. -->

<option selected="true" disabled="disabled">Select a Option</option>

<!-- Here is a example : -->
<label for="payment">Choose a Type :</label>
<select name="payment" required>
  <option selected="true" disabled="disabled">Select a Option</option>
  <option value="recharge">Recharge</option>
  <option value="withdraw">Withdraw</option>
</select>
Comment

PREVIOUS NEXT
Code Example
Html :: onclick video popup in html 
Html :: input text before element 
Html :: git check changes between commits 
Html :: innerhtml is not a function 
Html :: <= meaning 
Html :: html color input 
Html :: hover html 
Html :: simple form for add id to input 
Html :: how should you use content_for and yield 
Html :: class not working react 
Html :: bootstrap offcanvas 
Html :: how to make a sign up page in html 
Html :: run html 
Html :: leave youtube comment with timestamp 
Html :: html <aside element 
Html :: ubuntu 17.10 vmware 
Html :: html5ap 
Html :: shortcut to open vscode html page in chrome 
Html :: custom video player html5 books 
Html :: give html content to canavas 
Html :: table con html 
Html :: como hacer un boton flotante de volver arriba en html 
Html :: html to text 
Html :: difference between index, follow or follow 
Html :: blank anger tag to open page on new window 
Html :: cara mengatur ukuran gambar navbar-brand 
Html :: boostrap thymeleaf modal 
Html :: html not showing image with full path 
Html :: dashboard box in adminlte 
Html :: emmet abbr 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =