Skip to content

Instantly share code, notes, and snippets.

@AlexeyNik
Created June 14, 2020 06:54
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 AlexeyNik/f0602713063a30aec1d92d039dd7358d to your computer and use it in GitHub Desktop.
Save AlexeyNik/f0602713063a30aec1d92d039dd7358d to your computer and use it in GitHub Desktop.
$("#setOption").click( function() {
foo("Option");
} );
function foo(id) {
if (document.getElementById(id).style.display == "none") {
document.getElementById(id).style.display = "block"
} else {
document.getElementById(id).style.display = "none"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment