/**
* Theme JS file.
*/
jQuery(function($) {
"use strict";
// Search focus handler
function searchFocusHandler() {
const searchFirstTab = $('.inner_searchbox input[type="search"]');
const searchLastTab = $('button.search-close');
$(".open-search").click(function(e) {
e.preventDefault();
e.stopPropagation();
$('body').addClass("search-focus");
searchFirstTab.focus();
});
$("button.search-close").click(function(e) {
e.preventDefault();
e.stopPropagation();
$('body').removeClass("search-focus");
$(".open-search").focus();
});
// Redirect last tab to first input
searchLastTab.on('keydown', function(e) {
if ($('body').hasClass('search-focus') && e.which === 9 && !e.shiftKey) {
e.preventDefault();
searchFirstTab.focus();
}
});
// Redirect first shift+tab to last input
searchFirstTab.on('keydown', function(e) {
if ($('body').hasClass('search-focus') && e.which === 9 && e.shiftKey) {
e.preventDefault();
searchLastTab.focus();
}
});
// Allow escape key to close menu
$('.inner_searchbox').on('keyup', function(e) {
if ($('body').hasClass('search-focus') && e.keyCode === 27) {
$('body').removeClass('search-focus');
searchLastTab.focus();
}
});
}
// Call the search focus handler
searchFocusHandler();
// Preloader
$(document).ready(function() {
setTimeout(function() {
$(".loader").fadeOut("slow");
}, 1000);
});
// Scroll to top
$(function() {
$(window).scroll(function() {
if ($(this).scrollTop() >= 50) {
$('#return-to-top').fadeIn(200);
} else {
$('#return-to-top').fadeOut(200);
}
});
$('#return-to-top').click(function() {
$('body,html').animate({
scrollTop: 0
}, 500);
});
});
// Slider
$(document).ready(function() {
$('#slider .owl-carousel').owlCarousel({
loop: false,
margin: 0,
nav: false,
dots: true,
navText: ['',''],
rtl: false,
items: 1,
autoplay: false,
autoplayTimeout: 3000,
autoplayHoverPause: true,
});
});
});
// Define functions in the global scope
function business_corporate_agency_menu_open_nav() {
jQuery(".sidenav").addClass('open');
}
function business_corporate_agency_menu_close_nav() {
jQuery(".sidenav").removeClass('open');
}
// About
jQuery(document).ready(function($) {
// Initialize the .abt-cat slider
$('.abt-cat .owl-carousel').owlCarousel({
loop: true,
margin: 0,
nav: false,
dots: false,
rtl: false,
items: 3,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: true
});
});