Dantes (обсуждение | вклад) (Полностью удалено содержимое страницы) Метка: очистка |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
$(document).ready(function () { | |||
$('.collapsible-header').css({ | |||
'cursor': 'pointer', | |||
'font-weight': 'bold', | |||
'margin-top': '0.5em' | |||
}); | |||
$('.collapsible-content').hide(); | |||
$('.collapsible-header').click(function () { | |||
$(this).next('.collapsible-content').slideToggle(200); | |||
}); | |||
}); | |||
Версия от 23:20, 2 мая 2025
$(document).ready(function () {
$('.collapsible-header').css({
'cursor': 'pointer',
'font-weight': 'bold',
'margin-top': '0.5em'
});
$('.collapsible-content').hide();
$('.collapsible-header').click(function () {
$(this).next('.collapsible-content').slideToggle(200);
});
});