Skip to content

Instantly share code, notes, and snippets.

@Acephalia
Created September 21, 2025 03:40
Show Gist options
  • Save Acephalia/60ae4e10b05eed2ac75984ae285bd71c to your computer and use it in GitHub Desktop.
Save Acephalia/60ae4e10b05eed2ac75984ae285bd71c to your computer and use it in GitHub Desktop.
Divi Change Tabs On Hover
<script type="text/javascript">
jQuery(function ($) {
$('.et_pb_tabs ul.et_pb_tabs_controls > li').on('mouseenter', function (e) {
$(this).find('> a').not('.et_pb_tab_active').click();
});
});
</script>
@Acephalia
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment