6 lines
No EOL
275 B
JavaScript
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(); }
|
|
} |