slide

Fires when the user drags the drag handle to a new position.

Example - subscribe to the slide event

<label>Temperature</label>
<input id="slider" class="temperature" />         

<script>
    function sliderOnSlide(e) {
        console.log("Slide :: new slide value is: " + e.value);
    }

    $(document).ready(function() {
        $("#slider").kendoSlider({
            slide: sliderOnSlide,
            min: 0,
            max: 30,
            smallStep: 1,
            largeStep: 10,
            value: 18
        });                    
    });
</script>

Event Data

e.value Number

Represents the value from the current position of the drag handle.

In this article