File size: 580 Bytes
c33fa07 844135f 3a45acb c33fa07 df31f2a c33fa07 3a45acb df31f2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // Main script file - can be used for any shared functionality
document.addEventListener('DOMContentLoaded', function() {
// Form submission for final expense quotes
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
// In a real scenario, this would send to your lead processing system
alert('Thank you! An agent will contact you shortly with your final expense insurance options.');
});
}
// Any other shared functionality can go here
}); |