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