What would the variable for the current value of the roundSlider jquery plugin at any given time be called and how would I store this in my own variable? http://roundsliderui.com/
What's the variable for the current value of the slider at any given timer?
101 Views Asked by Mitra0000 At
2
There are 2 best solutions below
0

Check the document from here: http://roundsliderui.com/document.html#getValue
Also at anytime you can get the value like below:
var currentValue = $("#slider").roundSlider("getValue");
Just use its getValue() method -