Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@adamledwards
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamledwards/dee3b66d8bb5925f176b to your computer and use it in GitHub Desktop.
Save adamledwards/dee3b66d8bb5925f176b to your computer and use it in GitHub Desktop.
<div class='FieldWrapper radiobutton'>
<ul id='someID'>
<li>
<label for="foo">foo</label>
<input id="foo" name="foo" type="radio" value="Yep">
</li>
<li>
<label for="bar">bar</label>
<input id="bar" name="bar" type="radio" value="Nope">
</li>
</ul>
</div>
<!--insead of -->
<div class="FieldWrapper radiobutton">
<table border="0" class="FieldTextBoxMedium" id="someID">
<tr>
<td>
<input id="foo" name="foo" type="radio" value="Yep">
<label for="foo">Yep</label>
</td>
</tr>
<tr>
<td>
<input id="bar" name= "bar" type="radio" value="Nope">
<label for="bar">Nope</label>
</td>
</tr>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment