close hamburg menu automatically after click
I am using "Empty: Subpage without Header" - layout with hamburger menu style.
The problem ist, that the menu does not automatically close after selecting a menu entry. How could that be achieved?
http://www.drehbox.de/wp-test
Thx in advance
E. Müller
Comments
you can use this custom JS
jQuery( document ).ready(function($){
thanks$('#menu li a').on('click', function() {
$( ".responsive-menu-toggle" ).click();
});
});