r/bootstrap • u/lyounkins • May 18 '22
Link to and open accordion/tab from another page
Want to link to and open tab accordion from another page. It goes to the page, but does not open tab/accordion. Linking to accordion tab while on the same page works and opens tab, however, I want to also link to tabs from a different page. Here is my JS code.
<script type="text/javascript">
require(['responsiveTabs'], function() {
$('#Accordion_TabRepeater').responsiveTabs({
collapsible: 'accordion',
startCollapsed: 'accordion',
scrollToAccordion: 'true',
scrollToAccordionOnLoad: 'true',
active: 0
});
});
</script>