I have a bootstrap accordion setup and working fine.
I need to have links on external pages which will:
A) Take you to the specified panel within the accor
You can try this:
JS code: $(function () { // check if there is a hash in the url if (window.location.hash != '') { // show the panel based on the hash now. $(window.location.hash + '.collapse').collapse('show'); } });