Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
GarGerry
/
Flux-web
like
1
Running
App
Files
Files
Community
691e0a9
Flux-web
/
script.js
GarGerry
Create script.js
691e0a9
verified
6 months ago
raw
Copy download link
history
blame
Safe
200 Bytes
const
menuToggle =
document
.
querySelector
(
".menu-toggle"
);
const
navLinks =
document
.
querySelector
(
".nav-links"
);
menuToggle.
addEventListener
(
"click"
,
() =>
{
navLinks.
classList
.
toggle
(
"show"
);
});