play
Forces the video to start playing.
Example
<div id="mediaplayer"></div>
<script>
$("#mediaplayer").kendoMediaPlayer({
media: { title: "Kendo UI for jQuery: Welcome and Overview", source: "https://www.youtube.com/watch?v=UbkbVBNYZMc" }
});
setTimeout(function () {
// get a reference to the media player widget
var mediaPlayer = $("#mediaplayer").data("kendoMediaPlayer");
// Starts the playing of the video
mediaPlayer.play();
}, 1000);
</script>
In this article