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
functionexpandid{
Closeallthepostslists
constsection=documentgetElementByIdid;
ifsection{
ifsectionstyledisplay==block{
sectionstyledisplay=none;
}else{
sectionstyledisplay=block;
}
}else{
consolelogUnabletofindelementwithid:id;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13