11 lines
381 B
JavaScript
11 lines
381 B
JavaScript
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const findCaregiverBtn = document.querySelector('a[href="#search-widget"]');
|
|
if (findCaregiverBtn) {
|
|
findCaregiverBtn.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.querySelector('#search-widget').scrollIntoView({ behavior: 'smooth' });
|
|
});
|
|
}
|
|
});
|