Earth Hacks @ Haverford 2022
A two-day event at Haverford College from February 5-6th, 2022.
3 Projects 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'; }); }); });
Earth Hacks @ Haverford 2022
A two-day event at Haverford College from February 5-6th, 2022.
3 Projects Submitted