Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
for (const form of document.querySelectorAll('form')) { form.addEventListener('submit', (event) => { event.preventDefault() alert('123') }); }