Created
February 17, 2016 08:05
-
-
Save tyxla/93c12725db270915ccb0 to your computer and use it in GitHub Desktop.
Tabify Edit Screen + Carbon Fields compatibility - reopen first tab on load
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(function($) { | |
$(window).on('load', function() { | |
var $firstTab = $('.tabify-tab:eq(0)'); | |
if ($firstTab.length) { | |
$firstTab.trigger('click'); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment