droppable?
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 1m9s
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 1m9s
This commit is contained in:
11
js/main.js
Normal file
11
js/main.js
Normal file
@@ -0,0 +1,11 @@
|
||||
function toggle(n) {
|
||||
var menus = document.getElementsByClassName("submenu");
|
||||
for(var i=0;i<menus.length;i++){
|
||||
if((i == (n-1)) && (menus[i].style.display != "block")){
|
||||
menus[i].style.display = "block";
|
||||
}else{
|
||||
menus[i].style.display = "none";
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user