Skip to content

Instantly share code, notes, and snippets.

@lots0logs
Created May 29, 2016 21:28
Show Gist options
  • Save lots0logs/8e6afdde4e5a144f529d80dbbaa09ef7 to your computer and use it in GitHub Desktop.
Save lots0logs/8e6afdde4e5a144f529d80dbbaa09ef7 to your computer and use it in GitHub Desktop.
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment