Skip to content

Commit

Permalink
add script
Browse files Browse the repository at this point in the history
  • Loading branch information
youphendriks committed Jul 29, 2024
1 parent 461ee0e commit 6b93569
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/js/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
function toggleText() {
var x = document.getElementById("myDIV");
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}

0 comments on commit 6b93569

Please sign in to comment.