home comics writing pictures archive about

colapsable.js

Language: javascript
Last Modified: 2022-02-19 7:54:01 PM UTC
File Size: 320 bytes
http://www.penguinstew.ca/scripts/colapsable.js
function expand(id) {
// Close all the posts lists
const section = document.getElementById(id);
if(section) {
if(section.style.display == "block") {
section.style.display="none";
} else {
section.style.display="block";
}
} else {
console.log('Unable to find element with id: ' + id);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13