Skip to content

Instantly share code, notes, and snippets.

@gagimilicevic
Created November 11, 2016 08:31
Show Gist options
  • Save gagimilicevic/bf712859b1b5748f3c6b387098213140 to your computer and use it in GitHub Desktop.
Save gagimilicevic/bf712859b1b5748f3c6b387098213140 to your computer and use it in GitHub Desktop.
Find active element and activate its parent bootstrap tab
$(document).ready(function () {
$( all_items ).each( function( index ) {
if( $( this ).attr( 'class' ) == 'active' ) {
var active_atr = $(this).closest('.tab-pane').attr('id');
$('a[href="#' + active_atr + '"]').tab('show');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment