Skip to content

Instantly share code, notes, and snippets.

@rvizena
Created April 22, 2020 18:52
Show Gist options
  • Save rvizena/83e17144ddddde3a99c6c1b8f82da0a9 to your computer and use it in GitHub Desktop.
Save rvizena/83e17144ddddde3a99c6c1b8f82da0a9 to your computer and use it in GitHub Desktop.
HTML5 Video Toggle Play/Pause
// HTML5 video element with button toggle
$('button').click(function () {
var mediaVideo = $("#myVideo").get(0);
if (mediaVideo.paused) {
mediaVideo.play();
$('.pause').show();
$('.play').hide();
} else {
$('.play').show();
$('.pause').hide();
mediaVideo.pause();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment