Skip to content

Instantly share code, notes, and snippets.

@jnicol
jnicol / stop-video.js
Last active February 26, 2023 07:13 — forked from cferdinandi/stop-video.js
A simple method to stop YouTube, Vimeo, and HTML5 videos from playing.
/**
* Stop all iframes or HTML5 <video>'s from playing
*/
var stopVideos = function () {
var videos = document.querySelectorAll('iframe, video');
Array.prototype.forEach.call(videos, function (video) {
if (video.tagName.toLowerCase() === 'video') {
video.pause();
} else {
var src = video.src;