jQuery( window ).load( function() { // Use buttonset() for radio images. jQuery( '.customize-control-radio-image .buttonset' ).buttonset(); // Handles setting the new value in the customizer. jQuery( '.customize-control-radio-image input:radio' ).change( function() { // Get the name of the setting. var setting = jQuery( this ).attr( 'data-customize-setting-link' ); // Get the value of the currently-checked radio input. var image = jQuery( this ).val(); // Set the new value. wp.customize( setting, function( obj ) { obj.set( image ); } ); } ); } ); // jQuery( document ).ready