I have this code which shows two menus in two tabs, How do I stop the currently open tab from resetting after a page refresh?
<script type="text/javascript">
$(document).ready(function(){
$('a[data-toggle="tab"]').on('show.bs.tab', function(e) {
localStorage.setItem('activeTab', $(e.target).attr('href'));
});
var activeTab = localStorage.getItem('activeTab');
if(activeTab){
$('#subtabs a[href="' + activeTab + '"]').tab('show');
}
});
</script>
<ul id="subtabs" class="nav nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="#artists" aria-controls="artists" role="tab" data-toggle="tab">Artists</a></li>
<li role="presentation"><a href="#subjects" aria-controls="subjects" role="tab" data-toggle="tab">Subjects</a></li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="artists">
<ul>
<?php $loop = new WP_Query(array( 'post_type' => 'artist', 'posts_per_page' => -1 )) ; while ($loop->have_posts()) : $loop->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
</div>
<div role="tabpanel" class="tab-pane" id="subjects">
<ul>
<?php $tax_terms = get_terms('subject');
foreach($tax_terms as $term) {
$term_link = get_term_link($term);
if (is_wp_error($term_link)) {
continue;
} ?>
<li><a href="<?php echo esc_url($term_link); ?>"><?php echo $term->name; ?></a></li>
<?php } ?>
</ul>
</div>
</div>