-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.js
24 lines (22 loc) · 1.02 KB
/
contact.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
document.addEventListener("DOMContentLoaded", function () {
var audio = document.getElementById("myAudio");
audio.play();
});
document.addEventListener("DOMContentLoaded", function() {
// Add event listener to the SEND button
document.getElementById("sendButton").addEventListener("click", function() {
// Clear input fields after clicking SEND
alert("Your Message Send Successfully");
document.getElementById("nameInput").value = "";
document.getElementById("emailInput").value = "";
document.getElementById("contactNoInput").value = "";
document.getElementById("messageInput").value = "";
});
document.getElementById("cancelButton").addEventListener("click", function() {
// Clear input fields after clicking CANCEL
document.getElementById("nameInput").value = "";
document.getElementById("emailInput").value = "";
document.getElementById("contactNoInput").value = "";
document.getElementById("messageInput").value = "";
});
});