Сайт Fakel Gym
https://fakelgym.cp.good-production.xyz/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
332 B
8 lines
332 B
// Navigation toggle
|
|
window.addEventListener('load', function () {
|
|
let main_navigation = document.querySelector('#primary-menu');
|
|
document.querySelector('#primary-menu-toggle').addEventListener('click', function (e) {
|
|
e.preventDefault();
|
|
main_navigation.classList.toggle('hidden');
|
|
});
|
|
});
|
|
|