HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //home/awaldron/_domains/waldroninteractive.com/wp-content/themes/minione/assets/js/init.js
jQuery(document).ready(function($){
	



/*----------------------------------------------------------------------------------*/
/*	Display post format meta boxes as needed
/*----------------------------------------------------------------------------------*/
	
	
	$('#post-formats-select input').change(checkFormat);
	$('.rwmb-input input').change(checkFormat);
	
	function checkFormat(){
		var format = $('#post-formats-select input:checked').attr('value');
				
		//only run on the posts page
		if(typeof format != 'undefined'){
			
			$('#post-body div[id^=klb-blogmeta-]').hide();
			$('#post-body #klb-blogmeta-'+format+'').stop(true,true).fadeIn(500);
			
			$('#post-body div[id^=klb_project_]').hide();
			$('#post-body #klb_project_'+format+'').stop(true,true).fadeIn(500);
					
		}
		
	}
	
	$(window).on('load', function() {
		checkFormat();
	})

		
    
});