Skip to content

Instantly share code, notes, and snippets.

@markashleybell
Created August 11, 2011 09:20
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 markashleybell/1139238 to your computer and use it in GitHub Desktop.
Save markashleybell/1139238 to your computer and use it in GitHub Desktop.
Form Markup
<form id="demo2" action="" method="post">
<p class="mab-checkbutton-container">
<input type="checkbox" value="1" name="cb-1" id="cb-1" /> <label for="cb-1">Checkbox 1</label>
<input type="checkbox" value="1" checked="checked" name="cb-2" id="cb-2" /> <label for="cb-2">Checkbox 2</label>
<input type="checkbox" value="1" checked="checked" name="cb-3" id="cb-3" /> <label for="cb-3">Checkbox 3</label>
</p>
<p><input type="submit" value="Submit Form and Show Values" /></p>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment