/
error_404
/
project_2
Обзор
Документация
Войти
/
error_404
/
project_2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
script.js
29 строк
680 B
error_404
upload files
03 сен 2025, 15:15
03 сен 2025, 15:15
b603841
Код
Авторство
О чём код?
function search_events() { let input = document.getElementById('searchbar').value input = input.toLowerCase(); let x = document.getElementsByClassName('aaa'); for (i = 0; i < x.length; i++) { if (!x[i].innerHTML.toLowerCase().includes(input)) { x[i].style.display = "none"; } else { x[i].style.display = "list-item"; } } } function showPopup() { document.getElementById('popup-overlay').style.display = 'block'; } function hidePopup() { document.getElementById('popup-overlay').style.display = 'none'; } function bookEvent() { alert('Вы забронировали билет!'); hidePopup(); }