Widget:WJG UserExamQuery: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 46: | Line 46: | ||
$("tr:not(.odd)").hide(); | $("tr:not(.odd)").hide(); | ||
$("tr:first-child").show(); | $("tr:first-child").show(); | ||
console.log('Got here, reading this'); | |||
$("tr.odd").click(function(){ | $("tr.odd").click(function(){ | ||
$(this).next("tr").toggle(); | $(this).next("tr").toggle(); | ||
$(this).find(".arrow").toggleClass("up"); | $(this).find(".arrow").toggleClass("up"); | ||
console.log('Got here reading this 2'); | |||
}); | }); | ||
console.log('Got here finished'); | |||
}; | }; |