show/hide this revision's text 3 Changed my code to use SpoonMeiser's suggestion.

If you give your middle <tr /> tags the "Table_Middle" class it makes it much easier to do. Then it only takes a few lines of jQuery. One to add the "Show Full Table" row, and another to add a click listener for that row. Make sure to change the colspan attribute's "X" value to the number of columns in your table.

var firstMiddleRow = $(".Table_Middle").hide().get(0);

 // jQuery chaining is useful here
 $(firstMiddleRow).before('(".Table_Middle").hide()
                   .eq(0)
                   .before('<tr colspan="X" class="showFull">Show Full Table<tr/>');

$(".showFull").click(function() {
    $(this).toggle();
    $(".Table_Middle").toggle();
});

This is useful because it degrades nicely and is accessible across lots of browsers/devices. If JavaScript is turned off, or CSS is disabled (or any other scenario that could cause this code to not be supported), there is no "show full table" row.

show/hide this revision's text 2 Updated to correct major issues with my original code sample.

If you give your middle <tr /> tags the "Table_Middle" class it makes it much easier to do. Then it only takes 2 a few lines of jQuery. One to add the "Show Full Table" row, and another to add a click listener for that row. Make sure to change the colspan attribute's "X" value to the number of columns in your table.

var firstMiddleRow = $(".Table_Middle").get(0)
                  .before('(".Table_Middle").hide().get(0);
$(firstMiddleRow).before('<tr colspan="X" class="showFull">Show Full Table<tr/>')
                  .hide();

<tr/>');

$(".showFull").click(function() {
    $(this).toggle();
    $(".Table_Middle").toggle();
});
show/hide this revision's text 1

If you give your middle <tr /> tags the "Table_Middle" class it makes it much easier to do. Then it only takes 2 lines of jQuery. One to add the "Show Full Table" row, and another to add a click listener for that row. Make sure to change the colspan attribute's "X" value to the number of columns in your table.

$(".Table_Middle").get(0)
                  .before('<tr colspan="X" class="showFull">Show Full Table<tr/>')
                  .hide();

$(".showFull").click(function() {
    $(this).toggle();
    $(".Table_Middle").toggle();
});