This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// open the collapsible item in the FAQ from the URL | |
$(document).ready(function(){ | |
if(window.location.hash != "") { | |
$('a[href="' + window.location.hash + '"]').click(); | |
} | |
}); | |
// Open the collapsible item in the FAQ when clicked on a href | |
jQuery( 'li.faqinfo a' ) |