CatHacks VIII 2022
A three-day in-person event at University of Kentucky from April 8th-10th, 2022.
1 Project Submitted
// Toggle Details for Hackathons document.addEventListener("DOMContentLoaded", function() { const detailButtons = document.querySelectorAll('.toggle-details'); detailButtons.forEach(button => { button.addEventListener('click', function() { const details = this.nextElementSibling; details.style.display = details.style.display === 'block' ? 'none' : 'block'; }); }); });
CatHacks VIII 2022
A three-day in-person event at University of Kentucky from April 8th-10th, 2022.
1 Project Submitted