// Will allow collapsed accordions to open automatically when requested with the ID as a URL parameter. // Example: https://www.scu.edu/is/academic-technology/avmedia-equipment-resources-and-services/lecture-capture-system/share-video-to-targeted-audience/#accordion-panel-745078 $(document).ready(function(){ if (location.hash !== null && location.hash !== "") { $(location.hash+"").addClass("show"); $('html, body').animate({ scrollTop: $(location.hash+"").offset().top-100 }, 1000); } });