HEX
Server: LiteSpeed
System: Linux standart108 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: pplae2ji7 (11089)
PHP: 8.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/plasmak.com.tr/httpdocs/wp-content/themes/buliten/js/admin.js
// Ready function
function do_ready() {
    do_accordion();
}

jQuery(document).ready(do_ready);

function do_accordion(){
    jQuery('body').on('click', '.experts_accordion_heading', function(e){
        e.preventDefault();
        var parent = jQuery(this).parent('.experts_accordion_wrapper');
        var body =  jQuery(parent).children('.experts_accordion_body');
        
        if(jQuery(parent).hasClass('open'))
        {
            jQuery(body).slideUp('fast');
            jQuery(parent).removeClass('open').addClass('close');
        } else {
            jQuery(body).slideDown('fast');
            jQuery(parent).removeClass('close').addClass('open');
        }
        
    });
}