lermer.nl/assets/js/mrl.js

8 lines
212 B
JavaScript
Raw Normal View History

2023-01-16 20:24:04 +01:00
function hamburgermenuknopje() {
var x = document.getElementById('main_menu_01');
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}