Is it possible to get the value separately from each slider ? I have been working for several days now, and I'm about to be desperate. I hope that there is a kind soul who can help me.
Here is my code:
<div class="slider"></div><br>
<div class="slider"></div><br>
<div class="slider"></div><br>
<div class="slider"></div><br>
<div class="slider"></div>
<script>
$(function(){
$('.slider').each(function () {
$("<span>")
.addClass("output")
.insertAfter($(this));
}).noUiSlider({
range: [0,30]
,start: 15
,handles: 1
,step: 1
,connect: 'lower'
,serialization: {
to: [$('.output'), "html"],
resolution: 1
}
})
});