Spaces:
Running
Running
$(document).ready(function() { | |
$('#contactForm').submit(function(e) { | |
e.preventDefault(); | |
alert('Thank you for your message! We will get back to you shortly.'); | |
$(this).trigger("reset"); // Reset the form after submission | |
}); | |
}); | |