CeramicProject/newyt/Framework_File/script/jtablesite.js

14 lines
363 B
JavaScript
Raw Normal View History

2024-05-18 15:28:29 +08:00
$(document).ready(function () {
$('.expandable-header').click(function (e) {
e.preventDefault();
var $header = $(this);
var $content = $header.nextAll('.expandable-content');
if ($content.is(':visible')) {
$content.slideUp('fast');
} else {
$content.slideDown('fast');
}
});
});