1
0
Fork 0
mirror of https://github.com/neocities/neocities.git synced 2025-05-01 20:48:01 +02:00
neocities/public/js/nav.js
2014-08-29 20:05:19 -07:00

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');
})
});