mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
6 lines
167 B
JavaScript
6 lines
167 B
JavaScript
$(document).ready(function() {
|
|
// this open and closes the small screen nav
|
|
$('.small-Nav').click(function(){
|
|
$('.header-Nav').toggleClass('show-Nav');
|
|
})
|
|
});
|