umesh-s-code-canvas / script.js
umesh-coder's picture
use this https://www.linkedin.com/in/umeshs09/?originalSubdomain=in to pull my data and more enhance it
82aef84 verified
Raw
History Blame Contribute Delete
603 Bytes
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Form submission handler
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! I will get back to you soon.');
this.reset();
});
}