document.addEventListener('wpcf7mailsent', function(event) {
document.getElementById('cf7-success-modal').style.display = 'block';
}, false);
document.addEventListener("DOMContentLoaded", function() {
// Close when clicking X
var closeBtn = document.getElementById('cf7-close');
if (closeBtn) {
closeBtn.addEventListener('click', function() {
document.getElementById('cf7-success-modal').style.display = 'none';
window.location.href = "https://connectsouthasia.com/your-registration-is-pending-approval/";
});
}
// Close when clicking the background
var modal = document.getElementById('cf7-success-modal');
if (modal) {
modal.addEventListener('click', function(e) {
if (e.target === this) {
this.style.display = 'none';
window.location.href = "https://connectsouthasia.com/your-registration-is-pending-approval/";
}
});
}
});