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