$(document).ready(function() {
if (window.location.hash) {
let hash = window.location.hash;
$('.nav-link').removeClass('active');
$('.tab-pane').removeClass('active');
$('.nav-link[href="' + hash + '"]').click();
}
});
$('.nav-tabs a').on('click', function() {
window.location.hash = $(this).attr('href');
});