Created
March 26, 2022 09:42
-
-
Save annuman97/ab10601d3656ad22a7cd16f51e0a9215 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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