Skip to content Skip to sidebar Skip to footer

How Hide Row In Table (without Display:none)

I need to hide row in html table. But I can't use property display: none. Reason - we use tablesorter plugin with widgets staticRow and scroller and when we hide rows with display:

Solution 1:

I am not sure if that's what you want, but you can add the attribute cellspacing="0" for the table. With css you can use.

#second_table { border-spacing:0;} 

Post a Comment for "How Hide Row In Table (without Display:none)"