CoolFace
Apppublic

MadisonMacraeDesign/river-rage-rafting-rush

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
script.js14 linesDownload Raw Back to root
1// Any additional JavaScript functionality can be added here2document.addEventListener('DOMContentLoaded', function() {3    // You could add interactive elements here4    console.log('Adventure card loaded successfully!');5    // Enhanced boat option selection6    const boatOptions = document.querySelectorAll('.bg-blue-100');7    boatOptions.forEach(option => {8        option.addEventListener('click', function() {9            boatOptions.forEach(opt => opt.classList.remove('bg-blue-800', 'text-white'));10            this.classList.add('bg-blue-800', 'text-white');11            console.log(`Boat type selected: ${this.textContent}`);12        });13    });14});