Skip to content

Instantly share code, notes, and snippets.

@suntong
Last active August 29, 2015 14: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 suntong/6195df2353680662334f to your computer and use it in GitHub Desktop.
Save suntong/6195df2353680662334f to your computer and use it in GitHub Desktop.
<title>Multiple Checkbox Select/Deselect - DEMO</title>
<h2>Multiple Checkbox Select/Deselect - DEMO</h2>
<table border="1">
<tbody>
<tr>
<th>
<input type="checkbox" id="selectall">
</th>
<th>Cell phone</th>
<th>Rating</th>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="1">
</td>
<td>BlackBerry Bold 9650</td>
<td>2/5</td>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="2">
</td>
<td>Samsung Galaxy</td>
<td>3.5/5</td>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="3">
</td>
<td>Droid X</td>
<td>4.5/5</td>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="4">
</td>
<td>HTC Desire</td>
<td>3/5</td>
</tr>
<tr>
<td align="center">
<input type="checkbox" class="case" name="case" value="5">
</td>
<td>Apple iPhone 4</td>
<td>5/5</td>
</tr>
</tbody>
</table>
<div id="log"></div>
<div id="s"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment