I have a table with summaries about a particular client, where the first line is the main content to be displayed, and the rest is a mere complement.
I know I could apply display: none
, but I do not think that should be the best way to do it. I want to hide the rest of <tr>
and display them with toggle
, which is already being done:
$('#toggle-posicao-financeira').click(function() {
$('#table-posicao-financeira').fadeToggle();
});