About Compassion Script

  • August 1, 2018
  • By:

// automatically expands out the “Our Partnerships” show/hide if the URL contains #partners
jQuery(document).ready(function() {
if(window.location.href.indexOf(‘#partners’) > -1) {
jQuery(‘#partners’).find(‘.show-hide’).first().addClass(‘open’);
}
});