10 lines
362 B
JavaScript
10 lines
362 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
const findCoachBtn = document.querySelector('.find-coach-btn');
|
|
if (findCoachBtn) {
|
|
findCoachBtn.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.querySelector('#featured-coaches').scrollIntoView({ behavior: 'smooth' });
|
|
});
|
|
}
|
|
});
|