Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
$(document).ready(function () { | $(document).ready(function () { | ||
$('.collapsible-header').click(function () { | $('.collapsible-header').click(function () { | ||
$(this).next('.collapsible-content').slideToggle(200); | var content = $(this).next('.collapsible-content'); | ||
content.slideToggle(200); | |||
$(this).toggleClass('open'); | |||
}); | }); | ||
$('.recipe-card').each(function () { | $('.recipe-card').each(function () { | ||
var borderColor = $(this).attr('data-border'); | var borderColor = $(this).attr('data-border'); | ||
Версия от 02:49, 3 мая 2025
$(document).ready(function () {
$('.collapsible-header').click(function () {
var content = $(this).next('.collapsible-content');
content.slideToggle(200);
$(this).toggleClass('open');
});
$('.recipe-card').each(function () {
var borderColor = $(this).attr('data-border');
if (borderColor) {
$(this).css('border-color', borderColor);
}
});
});