mawacode.de/js/menu.js

17 lines
281 B
JavaScript
Raw Normal View History

2024-02-09 19:37:44 +01:00
//menu Script
var menuList = document.getElementById("menuList");
menuList.style.maxHeight = "0px";
function togglemenu(){
if(menuList.style.maxHeight == "0px")
{
menuList.style.maxHeight = "200px";
}
else
{
menuList.style.maxHeight = "0px";
}
}