There is a code that tracks the slider position changes . However, when you first start, the slider is not in the specified position. What could be the problem?
var viewModel = { id: ko.observable("slider-new"), min: ko.observable(10), max: ko.observable(100), value: ko.observable(20) //начальное положение слайдера }; ko.applyBindings(viewModel);