Skip to content

Instantly share code, notes, and snippets.

@tekin
Created March 18, 2009 23:07
Show Gist options
  • Save tekin/81467 to your computer and use it in GitHub Desktop.
Save tekin/81467 to your computer and use it in GitHub Desktop.
<%= options_for_select(
['Choose a size', 'small', 'medium', 'large'],
nil, # selected value
'medium' # disabled value
) %>
<!-- Gives you -->
<option value="Choose a size">Please choose a size</option>
<option value="s">small</option>
<option value="m" disabled="disabled">medium</option>
<option value="l">large</option>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment