Rachel
Rachel

Reputation: 1159

Adjust slider by textbox value

Upvotes: 0

Views: 103

Answers (1)

Lucian Depold
Lucian Depold

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

Related Questions