Skip to content

Instantly share code, notes, and snippets.

@MarioBinder
Created August 21, 2020 08:00
Show Gist options
  • Save MarioBinder/b975a45fe323fba4f00112214fbd8a1b to your computer and use it in GitHub Desktop.
Save MarioBinder/b975a45fe323fba4f00112214fbd8a1b to your computer and use it in GitHub Desktop.
bootstrap 4 - save active tab
$('a[data-toggle="tab"]').on('show.bs.tab', function(e) {
localStorage.setItem('activeTab', $(e.target).attr('href'));
});
var activeTab = localStorage.getItem('activeTab');
if(activeTab){
$('#myTab a[href="' + activeTab + '"]').tab('show');
}