breakpoints: {
0: {
autoplay: {
enabled: true,
delay: 100,
},
},
640: {
autoplay: {
enabled: false,
},
},
},
recalculatePrices()
function recalculatePrices() {
$('select').on('change', function () {
calc()
})
function calc() {
var total = 0
$('select').each(function () {
var value = $(this).val() * 1
total += value
})
console.log(total);
}
}