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();
});
});