13 lines
362 B
JavaScript
13 lines
362 B
JavaScript
$(function() {
|
|
$("td[colspan=7]").find("p").hide();
|
|
$("table").click(function(event) {
|
|
event.stopPropagation();
|
|
var $target = $(event.target);
|
|
if ( $target.closest("td").attr("colspan") > 1 ) {
|
|
$target.slideUp();
|
|
} else {
|
|
$target.closest("tr").next().find("p").slideToggle();
|
|
}
|
|
});
|
|
});
|