Toggle the tbody of a table
Hello,
i habe a table in html like this
- <table>
- <tbody style="display:none;">
- ...
- </tbody>
- <tfoot>
- <tr><td>Show informaiton</td></tr>
- </tfoot>
- </table>
If i click on tfoot i want to fade in the tbody. This is my jQuery Code that isn't work.
- jQuery("tfoot").click(function () {
- jQuery(this).prevUntil("tbody").slideToggle("slow");
- });