Skip to content

Instantly share code, notes, and snippets.

@seksenov
Created February 27, 2016 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seksenov/f5a1cea573cbf478553a to your computer and use it in GitHub Desktop.
Save seksenov/f5a1cea573cbf478553a to your computer and use it in GitHub Desktop.
function playMedia() {
var media = document.getElementById("mediaVideo");
media.play();
}
function pauseMedia() {
var media = document.getElementById("mediaVideo");
media.pause();
}
function stopMedia() {
var media = document.getElementById("mediaVideo");
media.pause();
media.currentTime = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment