Skip to content

Instantly share code, notes, and snippets.

@efetigrel
Created August 15, 2022 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efetigrel/a1c6b7f7835d030f0f19fd2d78ed21d8 to your computer and use it in GitHub Desktop.
Save efetigrel/a1c6b7f7835d030f0f19fd2d78ed21d8 to your computer and use it in GitHub Desktop.
JS
function myFunction() {
var x = document.getElementById("myLinks");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment