Files
Version-1-2/static/js/showSuccessAlert.js
2025-11-25 13:33:49 +05:30

8 lines
406 B
JavaScript

function showSuccessAlert(event) {
event.preventDefault(); // Prevent form submission
document.getElementById("successPopup").style.display = "block";
setTimeout(function() {
document.getElementById("successPopup").style.display = "none";
event.target.submit(); // Submit the form after showing the message
}, 2000);
}