TCN 35th Anniversary
by TCN Behavioral Health
// JavaScript for click-to-flip functionality on touch devices
document.addEventListener('DOMContentLoaded', function() {
const flipCards = document.querySelectorAll('.flip-card');
flipCards.forEach(card => {
card.addEventListener('click', function() {
// Toggle the 'flipped' class on click
this.classList.toggle('flipped');
});
});
});