Dantes (обсуждение | вклад) (Полностью удалено содержимое страницы) Метки: очистка ручная отмена |
Dantes (обсуждение | вклад) Нет описания правки |
||
Строка 1: | Строка 1: | ||
function toggleTimeline(period) { | |||
var content = document.getElementById('content-' + period); | |||
if (content.style.display === "none") { | |||
content.style.display = "block"; | |||
} else { | |||
content.style.display = "none"; | |||
} | |||
} | |||
$(document).ready(function() { | |||
$(".timeline-header").click(function() { | |||
var period = $(this).attr("id").replace("header-", ""); | |||
toggleTimeline(period); | |||
}); | |||
}); |
Версия от 07:11, 17 января 2025
function toggleTimeline(period) { var content = document.getElementById('content-' + period); if (content.style.display === "none") { content.style.display = "block"; } else { content.style.display = "none"; } } $(document).ready(function() { $(".timeline-header").click(function() { var period = $(this).attr("id").replace("header-", ""); toggleTimeline(period); }); });