Files
payment_reconciliation_soft…/static/js/showSuccessAlert.js

8 lines
406 B
JavaScript
Raw Normal View History

2026-03-27 14:17:21 +05:30
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);
}