I\'m trying to figure out if there\'s setting to fade in tabs nicely in Zurb Foundation.
If not, does anyone know the best way to achieve this manually?
Wha
If anybody stumble upon this issue with foundation 6 here is my jQuery solution as I'm not a big fan of modifying the core of any framework.
// hack for fondation tabs animation
$(document).on('change.zf.tabs', function(e) {
var activeTab = $($(e.target).find('.is-active a').attr('href'));
activeTab.css('display', 'none').fadeIn();
});
Note: is-active class should be replaced by the one you specified if any.