teecraft-3d-studio / script.js
sa2647029's picture
The business is T-shirt design to edit it in 3D
339294f verified
raw
history blame contribute delete
789 Bytes
// Main JavaScript file for shared functionality
document.addEventListener('DOMContentLoaded', function() {
// Form submission handling
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
}
// 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'
});
});
});
});