How do I hide the middle of a table using jQuery? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T12:28:47Z http://stackoverflow.com/feeds/question/215219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery 11 How do I hide the middle of a table using jQuery? Brian Boatright 2008-10-18T16:22:34Z 2009-10-23T20:05:33Z <p>I have a really long 3 column table. I would like to </p> <pre><code>&lt;table&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Start&lt;/td&gt;&lt;td&gt;Hiding&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;End&lt;/td&gt;&lt;td&gt;Hiding&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; </code></pre> <p>This is the result I'm trying to obtain using jQuery.</p> <pre><code>Column1 Column2 Column1 Column2 ...Show Full Table... Column1 Column2 Column1 Column2 </code></pre> <p>I would like to use jQuery's show/hide feature to minimize the table but still show part of the top and bottom rows. The middle rows should be replace with text like "Show Full Table" and when clicked will expand to show the full table from start to finish.</p> <p>What is the best way to do this in jQuery?</p> <p>BTW I've already tried adding a class "Table_Middle" to some of the rows but it doesn't hide it completely the space it occupied is still there and I don't have the text to give the user a way to expand the table fully.</p> <p><strong>[EDIT] Added Working Example HTML inspired by Parand's posted answer</strong></p> <p><strong><em>The example below is a complete working example, you don't even need to download jquery. Just paste into a blank HTML file.</em></strong></p> <p><em>It degrades nicely to show only the full table if Javascript is turned off. If Javascript is on then it hides the middle table rows and adds the show/hide links.</em></p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=windows-1252"&gt; &lt;title&gt;Example Show/Hide Middle rows of a table using jQuery&lt;/title&gt; &lt;script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function() { $("#HiddenRowsNotice").html("&lt;tr&gt;&lt;td colspan='2'&gt; &lt;a href='#'&gt;&gt;&gt; some rows hidden &lt;&lt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;"); $("#ShowHide").html("&lt;tr&gt;&lt;td colspan='2'&gt;&lt;a href='#'&gt;show/hide middle rows&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;"); $("#HiddenRows").hide(); $('#ShowHide,#HiddenRowsNotice').click( function() { $('#HiddenRows').toggle(); $('#HiddenRowsNotice').toggle(); }); }); &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;table&gt; &lt;tbody id="ShowHide"&gt;&lt;/tbody&gt; &lt;tr&gt;&lt;th&gt;Month Name&lt;/th&gt;&lt;th&gt;Month&lt;/th&gt;&lt;/tr&gt; &lt;tbody&gt; &lt;tr&gt;&lt;td&gt;Jan&lt;/td&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;tbody id="HiddenRowsNotice"&gt;&lt;/tbody&gt; &lt;tbody id="HiddenRows"&gt; &lt;tr&gt;&lt;td&gt;Feb&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Mar&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Apr&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;tbody&gt; &lt;tr&gt;&lt;td&gt;May&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>[EDIT] Link my <a href="http://www.developerbuzz.com/2008/10/use-jquery-to-show-and-hide-part-of.html" rel="nofollow">blog post</a> and working example.</p> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/215227#215227 2 Answer by Greg for How do I hide the middle of a table using jQuery? Greg 2008-10-18T16:27:43Z 2008-10-18T16:27:43Z <p>The easiest way is to add a <code>&lt;tbody&gt;</code> in to group the rows and toggle that between <code>none</code> and <code>table-row-group</code> (catch exceptions and set it to <code>block</code> for IE). Not sure about making it specific to jquery but that's the "normal" way of doing things.</p> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/215231#215231 9 Answer by Parand for How do I hide the middle of a table using jQuery? Parand 2008-10-18T16:33:00Z 2008-10-20T01:12:05Z <p>Something like this could work:</p> <pre><code>&lt;table&gt; &lt;tbody&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr class="Show_Rows"&gt;&lt;td&gt;Start&lt;/td&gt;&lt;td&gt;Hiding&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;tbody class="Table_Middle" style="display:none"&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;tbody&gt; &lt;tr class="Show_Rows"&gt;&lt;td&gt;End&lt;/td&gt;&lt;td&gt;Hiding&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Column1&lt;/td&gt;&lt;td&gt;Column2&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; $('#something').click( function() { $('.Table_Middle').hide(); $('.Show_Rows').show(); }); $('.Show_Rows').click( function() { $('.Show_Rows').hide(); $('.Table_Middle').show(); }); </code></pre> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/215238#215238 1 Answer by SpoonMeiser for How do I hide the middle of a table using jQuery? SpoonMeiser 2008-10-18T16:35:38Z 2008-10-18T16:35:38Z <p>I'd probably do it like this:</p> <pre><code>&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Col1&lt;/th&gt; &lt;th&gt;Col2&lt;/th&gt; &lt;th&gt;Col3&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;/tr&gt; ... &lt;/tbody&gt; &lt;tbody id="hidden-rows"&gt; &lt;tr&gt; &lt;td colspan="3"&gt; &lt;a href="#" onclick="$('#hidden-rows').hide();$('#extra-rows').show();"&gt; Show hidden rows &lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;tbody id="extra-rows" style="display: none;"&gt; &lt;tr&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;/tr&gt; ... &lt;/tbody&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;td&gt;data1&lt;/td&gt; &lt;/tr&gt; ... &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>It's not a great method, because it doesn't degrade nicely.</p> <p>To get it to degrade nicely, you'd have to have all the rows shown initially, and then hide them with your jQuery document ready function, and also create the row with the link in.</p> <p>Also, your method of giving the rows to hide a particular class should also work. The jQuery would look something like this:</p> <pre><code>$(document).ready(function() { $('tr.Table_Middle').hide(); }); </code></pre> <p>You'd still need to create the row with the link to unhide them though.</p> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/215243#215243 1 Answer by Dan Herbert for How do I hide the middle of a table using jQuery? Dan Herbert 2008-10-18T16:40:00Z 2008-10-19T18:32:16Z <p>If you give your middle <code>&lt;tr /&gt;</code> tags the "<code>Table_Middle</code>" 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 <code>colspan</code> attribute's "X" value to the number of columns in your table.</p> <pre><code> // jQuery chaining is useful here $(".Table_Middle").hide() .eq(0) .before('&lt;tr colspan="X" class="showFull"&gt;Show Full Table&lt;tr/&gt;'); $(".showFull").click(function() { $(this).toggle(); $(".Table_Middle").toggle(); }); </code></pre> <p>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.</p> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/217315#217315 2 Answer by nickf for How do I hide the middle of a table using jQuery? nickf 2008-10-20T01:39:34Z 2008-10-20T01:39:34Z <p>Here's a solution which doesn't require any extra markup and it degrades nicely.</p> <pre><code>&lt;table id="myTable"&gt; &lt;tbody&gt; &lt;tr&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;td&gt;Cell&lt;/td&gt;&lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>and the jQuery... I've hardcoded in a few things here (like the table identifier, number of rows to show, etc. These could be put into a <code>class</code> attribute on the table if you wanted it to be more reusable. (eg: <code>&lt;table class="hidey_2"&gt;</code>)</p> <pre><code>var showTopAndBottom = 2, minRows = 4, $rows = $('#myTable tr').length), length = $rows.length ; if (length &gt; minRows) { $rows .slice(showTopAndBottom, length - showTopAndBottom) .hide() ; $rows .eq(showTopAndBottom - 1) .after( // this colspan could be worked out by counting the cells in another row $("&lt;tr&gt;&lt;td colspan=\"2\"&gt;Show&lt;/td&gt;&lt;/tr&gt;").click(function() { $(this) .remove() .nextAll() .show() ; }) ) ; } </code></pre> http://stackoverflow.com/questions/215219/how-do-i-hide-the-middle-of-a-table-using-jquery/1615615#1615615 0 Answer by Elzo Valugi for How do I hide the middle of a table using jQuery? Elzo Valugi 2009-10-23T20:05:33Z 2009-10-23T20:05:33Z <p>Try to use slice() method:</p> <pre><code>$("#table tr").slice(1, 4).hide(); </code></pre>