/** * Theme Customizer enhancements for a better user experience in the background option. * * Contains handlers to make Theme Customizer preview reload changes asynchronously. */ ( function( $ ) { // Background color. wp.customize( 'background_color', function( value ) { value.bind( function( to ) { $( 'body' ).css( { 'background-color': to, } ); $( 'mark, ins, .widget_calendar tbody a' ).css( { 'color': to, } ); $( '' ).appendTo( 'head' ); $( '' ).appendTo( 'head' ); $( '' ).appendTo( 'head' ); } ); } ); } )( jQuery );