Hide responsive menu on iPads once scroll # link click

Hi guys, phone menus seem to work ok & close when clicked but when trailing on iPads once you click on a # link to scroll to a point on the page the menu stays open.

I managed to remedy by adding this to the theme's custom JS:

jQuery(function($) {
   $("#Top_bar #menu ul li a").click(function(){
       $("nav#menu").hide();
   });
});

Is there a setting in the theme as I cannot find anything?

Comments

Sign In or Register to comment.