Skip to content

Instantly share code, notes, and snippets.

@KruegerDesigns
Created June 4, 2014 22:44
Show Gist options
  • Save KruegerDesigns/a5087628b00e8bbfec62 to your computer and use it in GitHub Desktop.
Save KruegerDesigns/a5087628b00e8bbfec62 to your computer and use it in GitHub Desktop.
Pause all other HTML5 videos when a video is played
// Pause all other HTML5 videos when a video is played
$('video').click(function() {
$("video").each(function () { this.pause() });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment