9 lines
352 B
JavaScript
9 lines
352 B
JavaScript
|
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";
|
||
|
}
|
||
|
});
|