Reputation: 1159
I should move the slider by textbox value not using mouse.
the below link has slider value in textbox. vice cersa is possible? if so can i have the code? Programmatic example of a horizontal slider
Upvotes: 0
Views: 103
Reputation: 2017
You can set the value of the slider by calling the set method:
var slider = new HorizontalSlider(...);
slider.set('value', 2);
Upvotes: 1