/* =============================================== Open header search =============================================== */ jQuery(document).ready(function ($) { $(".open-search-form").on("click", function (e) { e.preventDefault(); $(".search-form").addClass("active"); }); $(".close-search-form").on("click", function () { $(".search-form").removeClass("active"); }); }); jQuery(document).ready(function(){ jQuery('.close-search-form').hide(); }); function automobile_rental_open_search_form() { jQuery('.header-search .search-form').addClass('is-open'); jQuery('body').addClass('no-scrolling'); setTimeout(function(){ jQuery('.search-form #header-searchform input#header-s').filter(':visible').focus(); jQuery('.close-search-form').show(); jQuery('.search-form #searchform #search').focus(); }, 100); return false; } jQuery( ".header-search a.open-search-form").on("click", automobile_rental_open_search_form); /* =============================================== Close header search =============================================== */ function automobile_rental_search_form() { jQuery('.header-search .search-form').removeClass('is-open'); jQuery('body').removeClass('no-scrolling'); jQuery('.close-search-form').hide(); } jQuery( ".header-search a.close-search-form").on("click", automobile_rental_search_form); /* =============================================== OWL CAROUSEL SLIDER =============================================== */ jQuery('document').ready(function(){ var owl = jQuery('.slider .owl-carousel'); owl.owlCarousel({ margin:20, nav: false, autoplay : true, lazyLoad: true, autoplayTimeout: 3000, loop: false, dots:false, navText : ['',' '], responsive: { 0: { items: 1, nav: false }, 600: { items: 1 }, 1000: { items: 1 } }, autoplayHoverPause : true, mouseDrag: true }); var owl = jQuery('#trending .owl-carousel'); owl.owlCarousel({ margin:20, nav: false, autoplay : true, lazyLoad: true, autoplayTimeout: 3000, loop: false, dots:true, navText : ['',' '], responsive: { 0: { items: 1, nav: false }, 600: { items: 2 }, 1000: { items: 3 } }, autoplayHoverPause : true, mouseDrag: true }); }); /* =============================================== SCROLL TOP ============================================= */ jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 100) { jQuery('.scroll-up').fadeIn(); } else { jQuery('.scroll-up').fadeOut(); } }); jQuery('a[href="#tobottom"]').click(function () { jQuery('html, body').animate({scrollTop: 0}, 'slow'); return false; }); /*=============================================== PRELOADER =============================================== */ jQuery('document').ready(function($){ setTimeout(function () { jQuery(".cssloader").fadeOut("slow"); },1000); }); /* =============================================== STICKY-HEADER ============================================= */ jQuery(window).scroll(function () { var sticky = jQuery('.sticky-header'), scroll = jQuery(window).scrollTop(); if (scroll >= 100) sticky.addClass('fixed-header'); else sticky.removeClass('fixed-header'); }); jQuery(document).ready(function ($) { jQuery(".categories-heading h4").html(function (_, html) { return html.replace(/\b(\w)/g, "$1"); }); });