femslash-city/public/js/nav.js

7 lines
167 B
JavaScript
Raw Permalink Normal View History

$(document).ready(function() {
// this open and closes the small screen nav
$('.small-Nav').click(function(){
$('.header-Nav').toggleClass('show-Nav');
})
});