Widget:WJG UserExamQuery: Difference between revisions
Jump to navigation
Jump to search
Undo revision 1000196 by William J Gibson (talk) |
No edit summary |
||
Line 108: | Line 108: | ||
} | } | ||
}); | }); | ||
}); | }); | ||
$("tr:odd").addClass("odd"); | |||
$("tr:not(.odd)").hide(); | |||
$("tr:first-child").show(); | |||
$("tr.odd").click(function(){ | |||
$(this).next("tr").toggle(); | |||
$(this).find(".arrow").toggleClass("up"); | |||
}); | |||
}; | }; | ||