Flatlogic Bot e9ef223b28 New
2025-11-09 14:57:24 +00:00

13 lines
419 B
JavaScript

document.addEventListener('DOMContentLoaded', function() {
const browseBtn = document.getElementById('browse-courses-btn');
const coursesSection = document.getElementById('courses-section');
if (browseBtn && coursesSection) {
browseBtn.addEventListener('click', function(e) {
e.preventDefault();
coursesSection.scrollIntoView({ behavior: 'smooth' });
});
}
});