OgSite/script.js
2023-11-01 10:58:12 +01:00

6 lines
No EOL
275 B
JavaScript

function expand() { document.getElementById("bar").style.height = "100%"; }
function collapse() { document.getElementById("bar").style.height = "0px"; }
function myFunction() {
if (document.getElementById('bar').clientHeight == 0) { expand(); }
else { collapse(); }
}