HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/themes/simone/js/hide.js
// Toggle Author Bio on and off
jQuery(document).ready(function($){
    $(".reveal-bio a").click(function(){
        $(".author-info").slideToggle('slow');
    
        if($('.reveal-bio a').hasClass('fa-minus-circle')){
            $('.reveal-bio a').removeClass('fa-minus-circle').addClass('fa-plus-circle reveal-fix');
            $('.author-index').addClass('hide-fix');
        } else {
            $('.reveal-bio a').removeClass('fa-plus-circle reveal-fix').addClass('fa-minus-circle');
            $('.author-index').removeClass('hide-fix');
        };
        
        return false;
    });
});