I\'m using twitter-Bootstrap 2.04, and I\'m using the latest jQuery. I\'m trying to make a link that will go from one page to the page containing this accordion, and then ac
Yes, you will need to manually activate it on page load. Something like the following should work:
$(document).ready(function () {
location.hash && $(location.hash + '.collapse').collapse('show');
});
Also, as @SaadImran pointed out, this assumes that you link to the collapsible element id (eg., #collapseTwo) rather than the name in the anchor (eg., #Alink2).