Skip to content

Instantly share code, notes, and snippets.

@lmarburger
Created March 28, 2009 20:47
Show Gist options
  • Save lmarburger/87201 to your computer and use it in GitHub Desktop.
Save lmarburger/87201 to your computer and use it in GitHub Desktop.
$(function() {
$("tr.search td")
.wrapInner("<div></div>")
.children("div")
.hide()
.closest("tr")
.show();
$("button").click(function() {
$("tr.search div").slideToggle('fast');
});
});
<button>Click</button>
<table>
<thead>
<tr>
<th>One</th>
<th>Two</th>
<th>Three</th>
</tr>
</thead>
<tbody>
<tr class="search" style="display:none;">
<td>11111</td>
<td>11111</td>
<td>11111</td>
</tr>
<tr>
<td>22222</td>
<td>22222</td>
<td>22222</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment