Skip to main content
/*A-Z INDEX*/ /* Remove the word "index: from accordion buttion */ $(".accordion_drawer_heading button:contains( index)").filter(function() { return $(this).children().length === 0; }).text(function(index, text) { return text.replace(/ index/g, ''); }); /* Add fixed nav offset before every accordion button */ $(".accordion_drawer_heading").each(function(){ var $this = $(this); var $id = $this.find("button").text().toLowerCase(); $this.before(''); });