Current path: home/webdevt/www/demo2/wp-content/themes/spacious/inc/customizer/core/custom-controls/navigate/
?? Go up: /home/webdevt/www/demo2/wp-content/themes/spacious/inc/customizer/core/custom-controls
/**
* Background image control JS to handle the navigate customize option.
*
* File `navigate.js`.
*
* @package Spacious
*/
(
function ( $ ) {
$( window ).on( 'load', function () {
$( '.tg-navigate a' ).on( 'click', function ( e ) {
e.preventDefault();
var targetSection = $( this ).data( 'section' );
if ( targetSection ) {
wp.customize.section( targetSection ).focus();
}
} );
} );
}
)( jQuery );