CeramicProject/newyt/Framework_File/script/jtablesite.js

14 lines
363 B
JavaScript

$(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');
}
});
});