WordPress :: Divi Theme :: Add active class to menu item on click
<script>
(function($) {
$(window).load(function() {
setTimeout(function() {
var $menus = $('ul.nav');
$menus.each(function() {
var $hash_links = $(this).find('a[href*="#"]');
$hash_links.each(function() {
$(this).on('click', function() {
$(this).toggleClass('current-menu-item');
});
});
});
}, 800);
});
})(jQuery);
</script>