document.addEventListener('click', function(e) { var button = e.target.closest('#journey-read-more'); var story = document.getElementById('journey-full-story'); if (!button || !story) { return; } e.preventDefault(); if (story.classList.contains('journey-hidden')) { story.classList.remove('journey-hidden'); button.textContent = 'READ LESS'; } else { story.classList.add('journey-hidden'); button.textContent = 'READ MORE'; } });
Go to Top