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