(function($){ "use strict"; /*--- umq Slide ---*/ $('.umq-slide').slick({ centerMode: true, centerPadding: '5px', slidesToShow: 2, responsive: [ { breakpoint:1024, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 2 } }, { breakpoint: 768, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 5 } }, { breakpoint:600, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow:2 } }, { breakpoint: 480, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 1 } } ] }); $('a[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) { $('.umq-slide').slick('setPosition'); }); /*--- umq Slide ---*/ $('.cch-slide').slick({ centerMode: true, centerPadding: '5px', slidesToShow: 2, responsive: [ { breakpoint:1024, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 2 } }, { breakpoint: 768, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 5 } }, { breakpoint:600, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow:2 } }, { breakpoint: 480, settings: { arrows: false, centerMode: true, centerPadding: '0px', slidesToShow: 1 } } ] }); $('a[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) { $('.cch-slide').slick('setPosition'); }); /*-----Add field Script------*/ $('.extra-field-box').each(function() { var $wrapp = $('.multi-box', this); $(".add-field", $(this)).on('click', function() { $('.dublicat-box:first-child', $wrapp).clone(true).appendTo($wrapp).find('input').val('').focus(); }); $('.dublicat-box .remove-field', $wrapp).on('click', function() { if ($('.dublicat-box', $wrapp).length > 1) $(this).parent('.dublicat-box').remove(); }); }); })(jQuery);