Represents the value from the current position of the drag handle.
<label>Temperature</label><inputid="slider"class="temperature"/><script>functionsliderOnSlide(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>