Spaces:
Running
Running
File size: 530 Bytes
871e4b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle functionality will be handled in navbar component
console.log('SkyWork Clone loaded!');
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
}); |