Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save saber13812002/09d1745363c8889d5f7b193d8f9ec120 to your computer and use it in GitHub Desktop.
Save saber13812002/09d1745363c8889d5f7b193d8f9ec120 to your computer and use it in GitHub Desktop.
<script type="javascript">
$('#tabs').tabs('select', $('div[selected=true]').attr('nav-product-comments-tab'));
$(document).ready(function () {
console.log('d')
const urlParams = new URLSearchParams(window.location.search);
console.log(urlParams)
const activeTab = urlParams.get('active_tab');
console.log(activeTab)
if (activeTab == 'comments')
activateTab('nav-product-comments-tab');
});
function activateTab(tab) {
$('.nav-tabs a[href="#' + tab + '"]').tab('show');
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment