HEX
Server: Apache
System: Linux webm020.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: thanexcelr (29537)
PHP: 7.3.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/thanexcelr/www/wp-content/plugins/audio-album/js/customizer-showhide.js
jQuery(function($) {

	//* The controls to be hidden
	var controls = $( '#customize-control-bgcol, #customize-control-playr, #customize-control-tvcol, #customize-control-txtbt' );

	//* Hide/show the controls depending on whether the 'manual CSS' checkbox is checked on load,
	if( $( '#customize-control-manualcss input' ).prop( "checked" ) ){
		controls.hide();
	} else {
		controls.show();
	}

	//* Hide/show the controls when the 'manual CSS' checkbox is checked/unchecked
	$( '#customize-control-manualcss input' ).change(function(){
		if( $( '#customize-control-manualcss input' ).prop("checked") ) {
			controls.slideUp();
		} else {
			controls.slideDown();
		}
	});

});