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
Thanks for your help. I added functionality so that the code can open Accordions WITHIN Accordions:
$(document).ready(function () { if (location.hash){ $(location.hash).collapse('show'); $(location.hash).parents('.accordion-body').collapse('show'); } });