Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Created January 13, 2014 23:52
Show Gist options
  • Select an option

  • Save DeanPoulin/8410324 to your computer and use it in GitHub Desktop.

Select an option

Save DeanPoulin/8410324 to your computer and use it in GitHub Desktop.
checkboxes & radio buttons
<div class="checkbox">
<label>
<input type="checkbox" value="">
Option one is this and that&mdash;be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Option one is this and that&mdash;be sure to include why it's great
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment