Investor FAQs

' + '
' + '
' + '
    ' + '
  • {{{answer}}}
  • ' + '
' + '
' + '
' + '{{/.}}' // @formatter:on /* beautify preserve:end */ ); // First, parse the FAQ module into a data list $('.module-faq .module_item').each(function () { var $this = $(this), $anchor = $this.find('.module_anchor-target'), $question = $this.find('.module-faq_question'), $answer = $this.find('.module-faq_answer'); faqDataList.push({ id: $anchor.attr('name'), question: $question.text().trim(), answer: $answer.html() }); }); $('.QuarterlyResultsPanel .panel').html(Mustache.render(faqItemTemplate, faqDataList)); $('.QuarterlyResultsPanel .panel').collapse(); $('.QuarterlyResultsPanel .panel-collapse') .on('shown.bs.collapse', function () { $('.irwexpandcollapse > span:contains("Expand All")').hide().next().show(); }) .on('hidden.bs.collapse', function () { if ($('.QuarterlyResultsPanel .panel-collapse.show').length === 0) { $('.irwexpandcollapse > span:contains("Expand All")').show().next().hide(); } }); $('.irwexpandcollapse').on('click', '> span', function () { var $this = $(this), text = $this.text().trim(); if (text === "Expand All") { $this.next().show(); $('.QuarterlyResultsPanel .panel-collapse').collapse('show'); } else { $this.prev().show(); $('.QuarterlyResultsPanel .panel-collapse').collapse('hide'); } $this.hide(); });