Skip to content

Instantly share code, notes, and snippets.

@annuman97
Created March 26, 2022 09:42
Show Gist options
  • Save annuman97/ab10601d3656ad22a7cd16f51e0a9215 to your computer and use it in GitHub Desktop.
Save annuman97/ab10601d3656ad22a7cd16f51e0a9215 to your computer and use it in GitHub Desktop.
/*Ninja Table hide some rows and display them on click at first cell*/
jQuery('tbody tr:nth-child(n+2):nth-child(-n+4)').hide();
jQuery('tbody tr:nth-child(n+6):nth-child(-n+8)').hide();
$(document).ready(function() {
jQuery('.footable > tbody > tr:first-child > td:first-child').click(function() {
jQuery('tbody tr:nth-child(n+2):nth-child(-n+4)').toggle();
});
jQuery('.footable > tbody > tr:nth-child(5) > td:first-child').click(function() {
jQuery('tbody tr:nth-child(n+6):nth-child(-n+8)').toggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment