خرید انواع منبع تغذیه مستر تک Master Tech

جدیدترین
ارزان‌ترین
گران‌ترین
1 تا 2 صفحه 1
1 تا 2 صفحه 1
back to top Price range $(".priceRange").slider({ range: true, // Enable the range (min and max) min: 0, // Minimum value max: 100000000, // Maximum value step: 1, // Step increment values: [0, 100000000], // Initial values for the min and max slide: function (event, ui) { $(".priceRange_min").val(ui.values[0]); $(".priceRange_max").val(ui.values[1]); setTimeout(()=>{ search() },500) } }); $(".priceRange_min, .priceRange_max").on('input', function () { var minVal = parseInt($(".priceRange_min").val()); var maxVal = parseInt($(".priceRange_max").val()); if (minVal < maxVal) { $(".priceRange").slider("values", [minVal, maxVal]); } }); $(document).ready(function () { var minVal = parseInt($(".priceRange_min").val()); var maxVal = parseInt($(".priceRange_max").val()); if (minVal < maxVal) { $(".priceRange").slider("values", [minVal, maxVal]); } }) $(document).on("keypress", "input", function(e){ if(e.which == 13){ search() } }); -->