I want to expand and collapse table rows when header columns is clicked. I only want to expand/collapse rows which are under the specific header (clicked).
Here is m
using jQuery it's easy...
$('YOUR CLASS SELECTOR').click(function(){ $(this).toggle(); });