Answer the question
In order to leave comments, you need to log in
How to display items in a specific price range?
$('#auto_but').on('click', function() { // Клик по кнопке фильтра
var $val = '#' + $('#mark').val() ;
$('.auto_i a').css('display', 'inline-block'); // Отобразить все элементы
$('.auto_i a').not($val).css('display', 'none'); // Отобразить элементы с определенным именем
var a = Number($("#sliderBuyAP").data("from")), // Минимальная цена
b = Number($("#sliderBuyAP").data("to")); // Максимальная цена
// Тут нужно скрыть элементы, цена которых меньше a и больше b
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question