;(function ($) { $(document).ready(function () { if (typeof(autoplaySpeedConf) == 'undefined') autoplaySpeedConf = 3500; if (typeof(pauseOnFocusConf) == 'undefined') pauseOnFocusConf = false; if (typeof(autoloopConf) == 'undefined') autoloopConf = true; $('.axslider-description').click(function () { // window.location.href = $(this).prev('a').prop('href'); }); $('.axslider').slick({ autoplay: autoloopConf, infinite: true, fade: true, dots: true, pauseOnHover: false, pauseOnFocus: false, autoplaySpeed: autoplaySpeedConf, lazyLoad: 'ondemand', adaptiveHeight: false, responsive: [ { breakpoint: 576, settings: { arrows: false, adaptiveHeight: false, } }, ] }); }); $('.slide-txt').click(function () { window.location.href = $(this).data('urlslider'); }) })(window.jQuery);