Skip to content

Instantly share code, notes, and snippets.

@cferdinandi
Last active August 2, 2025 14:10
Show Gist options
  • Save cferdinandi/9044694 to your computer and use it in GitHub Desktop.
Save cferdinandi/9044694 to your computer and use it in GitHub Desktop.
A simple method to stop YouTube, Vimeo, and HTML5 videos from playing.
/**
* Stop an iframe or HTML5 <video> from playing
* @param {Element} element The element that contains the video
*/
var stopVideo = function ( element ) {
var iframe = element.querySelector( 'iframe');
var video = element.querySelector( 'video' );
if ( iframe ) {
var iframeSrc = iframe.src;
iframe.src = iframeSrc;
}
if ( video ) {
video.pause();
}
};
@robweychert
Copy link

Super useful, thanks! In my implementation, I added a .replace() to line 10 in case of autoplay:

iframe.src = iframeSrc.replace("?autoplay=1", "");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment