Skip to content

Instantly share code, notes, and snippets.

@kamlesh08
Created July 9, 2020 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamlesh08/a56f04271c1b734287d339298402edc2 to your computer and use it in GitHub Desktop.
Save kamlesh08/a56f04271c1b734287d339298402edc2 to your computer and use it in GitHub Desktop.
View Advanced Tabs Content on Hover - PPBB - #15518
(function($) {
$(document).ready(function() {
$('.pp-tabs-labels .pp-tabs-label').on('mouseover', function() {
if ( $(this).hasClass('pp-tab-active') ) {
return;
}
$(this).trigger('click');
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment