Показать сообщение отдельно
  #4 (permalink)  
Старый 16.08.2018, 08:01
Профессор
Отправить личное сообщение для Artur_Hopf Посмотреть профиль Найти все сообщения от Artur_Hopf
 
Регистрация: 13.03.2018
Сообщений: 278

komned37,

Так что ли
function prnext() {
       $('.proektu .items .item.active .slides').slick({
            dots: true,
            infinite: true,
            speed: 300,        
       });
}

$(".proektu .items .item .items-nav .arrow-right").click(function {     
      $(this).parent().closest('.item').fadeOut(100).removeClass('active');  
      $(this).parent().closest('.item').next(".item").fadeIn(100).addClass('active');
      prnext();
 });

$('#tipp-select').on('change', function(){
        //собираем данные из data-атрибутов
        var tipp = jQuery(this).find('option:selected').data('tipp-id');
        var country = jQuery("#country-select").find('option:selected').data('country-id');
        var kateg = jQuery('#kateg-select').find('option:selected').data('kateg-id');
     
        $.post( "window.wp_data.ajax_url", { action : 'get_items', tipp_id : tipp,country_id:  country, kateg_id: kateg} )
        .done(function(items) {
               jQuery('#ajax-items').html(items);
               prnext();
        });         
 });

Последний раз редактировалось Artur_Hopf, 16.08.2018 в 08:17.
Ответить с цитированием