VPenkov / okayNav

The world's okayest responsive navigation. This is (sort of) a legacy implementation. Please stay tuned to the 3.0 branch (https://github.com/VPenkov/okayNav/tree/v3.0)
4.02k stars 266 forks source link

Close after click on one page #53

Open belov222105 opened 8 years ago

belov222105 commented 8 years ago

Hello How i can close menu on click on menu link on one page ?

alxndr-w commented 8 years ago

with jquery, sth. like

$('#nav-main a').on.('click', function() {
  $('.okayNav__menu-toggle).click();
});

(untested)