summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Knoerr <an.kn@protonmail.ch>2021-12-22 21:15:54 +0100
committerAnna Knoerr <an.kn@protonmail.ch>2021-12-22 21:15:54 +0100
commit419ef7d76c1dbbfe5fc3f0f14bbd4e93db9cffe2 (patch)
treebdd4283d3f5ff4698780b1f8807eaadb1b74efeb
parent1fec477cbc0d57c910e28e2af67befc398dc92ac (diff)
put script back in
-rw-r--r--blog.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/blog.html b/blog.html
index 67e11d2..6e55773 100644
--- a/blog.html
+++ b/blog.html
@@ -32,6 +32,36 @@
</div>
</body>
+<script>
+// Get the modal
+var modal = document.getElementById("myModal");
+
+// Get the button that opens the modal
+var btn = document.getElementById("myBtn");
+
+// Get the <span> element that closes the modal
+var span = document.getElementsByClassName("close")[0];
+
+// When the user clicks the button, open the modal
+btn.onclick = function() {
+ modal.style.display = "block";
+}
+
+// When the user clicks on <span> (x), close the modal
+span.onclick = function() {
+ modal.style.display = "none";
+}
+
+// When the user clicks anywhere outside of the modal, close it
+window.onclick = function(event) {
+ if (event.target == modal) {
+ modal.style.display = "none";
+ }
+}
+</script>
+
+
+
<h1>Kurious Kolibri Blog</h1>