Bohora-rental/js/custom.js

9 lines
352 B
JavaScript
Raw Normal View History

2025-01-13 13:51:48 +05:45
document.getElementById("contact-form").addEventListener("submit", function(event) {
event.preventDefault(); // Prevents form from submitting immediately
// Display the alert message
if (confirm("Booking has been confirmed!")) {
// If OK is pressed, redirect to another page
window.location.href = "car-grid.php";
}
});