In the world of weddings and special events, there’s a growing trend that combines art, creativity, and storytelling: live illustrations and sketch artists. These talented …
Planning a wedding can be both exciting and overwhelming, with countless decisions to make and details to manage. In 2025, however, technology is making the …
document.addEventListener('DOMContentLoaded', function () {
const form = document.querySelector('.wpcf7 form'); // Contact Form 7 form selector
if (form) {
form.addEventListener('submit', function () {
const phoneField = form.querySelector('.phone-field'); // Target phone field by class
if (phoneField) {
let phone = phoneField.value.replace(/\D/g, ''); // Remove all non-numeric characters
if (phone.length === 10) {
// Format the phone number as 123-456-7890
phoneField.value = phone.replace(/(\d{3})(\d{3})(\d{4})/, '$1-$2-$3');
}
}
});
}
});