Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $("table#report1.report > tbody > tr:odd").addClass("odd");
- $("table#report1.report > tbody > tr:not(.odd)").hide();
- $("table#report1.report > tbody > tr:first-child").show(
- );
- $("table#report1.report > tbody > tr.odd").click(function(){
- if(!$(this).next("tr").hasClass('shown'))
- {
- $(this).next("tr").show();
- $(this).next("tr").addClass("shown");
- }
- else
- {
- $(this).next("tr").hide();
- $(this).next("tr").removeClass("shown");
- }
- });
- //$("#report").jExpand();
- });
Advertisement
Add Comment
Please, Sign In to add comment