Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SopKit
/
tools
like
0
Running
App
Files
Files
Community
main
tools
/
script.js
sh20raj
tried to blur background
20e78d0
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
202 Bytes
document
.
querySelectorAll
(
".nav-close"
).
forEach
(
(
e
)=>
e.
addEventListener
(
"click"
,
() =>
{
let
navbarToggler =
document
.
querySelector
(
"nav ul"
);
navbarToggler.
classList
.
toggle
(
"active"
);
})
)