5
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 believe that it should not be the best way to be done. I want to hide the rest of the <tr>
and display them with the toggle
, that is already being done:
$('#toggle-posicao-financeira').click(function() {
$('#table-posicao-financeira').fadeToggle();
});