js fix
This commit is contained in:
parent
334e398852
commit
55aa9bf687
5 changed files with 14 additions and 26 deletions
8
assets/js/mrl.js
Normal file
8
assets/js/mrl.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
function hamburgermenuknopje() {
|
||||
var x = document.getElementById('main_menu_01');
|
||||
if (x.style.display === "block") {
|
||||
x.style.display = "none";
|
||||
} else {
|
||||
x.style.display = "block";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue