robochef-revolution / script.js
AppliantRobotics's picture
add the email in contact info as syed@appliantrobotics.com
48537a4 verified
Raw
History Blame Contribute Delete
806 Bytes
document.addEventListener('DOMContentLoaded', function() {
// 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'
});
});
});
// Form submission handling
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Here you would typically send the form data to your server
alert('Thank you for your interest! We will contact you soon.');
this.reset();
});
}
});