Before and After Windshield Replacement in Phoenix
Chevrolet, Kia and Ford
Chevrolet Tohoe 2015 Windshield Replacement
Before
After
Kia Forte 2020 Windshield Replacement
Before
After
Kia Niro Hybrid 2019 Windshield Replacement
Before
After
Kia Soul 2022 Windshield Replacement
Before
After
Ford Fusion 2014 Windshield Replacement
Before
After
Scroll to Top
document.getElementById('submitButton').addEventListener('click', function(event) {
event.preventDefault(); // Prevent default form submission
// Collect form data
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
const phone = document.getElementById('phone').value;
// Trigger sending email (replace with actual email API like SendGrid or backend service)
sendEmail(name, email, phone);
// Trigger phone call (replace with actual number or dynamic number logic)
const phoneNumber = "+1234567890"; // Dynamic number logic can be applied here
window.location.href = `tel:9920823124`;
// Optionally, show success message
alert('Form submitted, and call triggered!');
});
// Dummy function to simulate email sending (replace with actual service)
function sendEmail(name, email, phone) {
console.log("Sending email to:", alphawork68@gmail.com
);
console.log("Subject: Contact Form Submission");
console.log("Message: Name - " + name + ", Phone - " + phone);
// Integrate email sending API here (e.g., SendGrid, SMTP server, etc.)
}