volumeChange

This event is fired upon changing the volume level.

The event handler function context (available via the this keyword) will be set to the widget instance.

Example

Open In Dojo
<div id="mediaplayer" />
<script>
$("#mediaplayer").kendoMediaPlayer({
    autoPlay: true,
    media: { title: "Digital Transformation: A New Way of Thinking", source: "https://www.youtube.com/watch?v=gNlya720gbk" },
    volumeChange: function(){
        //handle event
    }
});
</script>
In this article