commit 93aed9f041a9aa39b7e5c6957e25ba81d4ec1084
parent 4349c4fe2b00b6b134d39309c57918f98e80aedc
Author: Francisco Boudagh <franciscoboudagh1@gmail.com>
Date: Mon, 20 Dec 2021 15:54:23 +0100
DUC
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.php b/index.php
@@ -40,7 +40,7 @@
</body>
<footer>© 2022 BoredButton3 | All rights reserved | By William ∧ Francisco ∧ Ali |
- <div class="popup" onclick="myFunction()">Contact
+ <div class="popup" onclick="contact()">Contact
<span class="popuptext" id="pop">If you have any information that can help or opinions to improve the website
or have questions, contact us at our email address: boredbutton3(at)gmail(dot)com
</span>
diff --git a/script.js b/script.js
@@ -1,4 +1,4 @@
-function myFunction() {
+function contact() {
var popup = document.getElementById("pop");
popup.classList.toggle("show");
}