Spaces:
Running
Running
| document.addEventListener('DOMContentLoaded', function() { | |
| const navLinks = document.querySelectorAll('nav a'); | |
| navLinks.forEach(link => { | |
| link.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href').substring(1); | |
| const targetSection = document.getElementById(targetId); | |
| targetSection.scrollIntoView({ behavior: 'smooth' }); | |
| }); | |
| }); | |
| }); |