Created
May 26, 2014 05:44
-
-
Save Robdel12/9149ca611e166899a141 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select id="opt_group"> | |
<option disabled selected class="hidden-option">Choose One</option> | |
<optgroup label="Group 1"> | |
<option>Option 1.1</option> | |
</optgroup> | |
<optgroup label="Group 2"> | |
<option>Option 2.1</option> | |
<option>Option 2.2</option> | |
</optgroup> | |
<optgroup label="Group 3" disabled> | |
<option>Option 3.1</option> | |
<option>Option 3.2</option> | |
<option>Option 3.3</option> | |
</optgroup> | |
</select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment