isPaused
Gets a value indicating whether the media is paused, stopped, or ended.
Returns
Boolean
A value indicating whether the media is paused, stopped, or ended.
Example
<div id="mediaplayer"></div>
<script>
$("#mediaplayer").kendoMediaPlayer({
autoPlay: true,
media: { title: "Kendo UI for jQuery: Welcome and Overview", source: "https://www.youtube.com/watch?v=UbkbVBNYZMc" }
});
// get a reference to the media player widget
var mediaPlayer = $("#mediaplayer").data("kendoMediaPlayer");
// check if the video has paused
mediaPlayer.isPaused();
</script>