Created
June 7, 2024 13:55
-
-
Save Pross/0cbde8befc9e79a5a3ea0684f38d607a to your computer and use it in GitHub Desktop.
Resize on tab click
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function () { | |
jQuery( 'a.fl-tabs-label' ).on('click', function(){ | |
jQuery(window).trigger('resize'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment