Skip to content

Instantly share code, notes, and snippets.

@abarza
Created April 15, 2014 17:18
Show Gist options
  • Save abarza/10749323 to your computer and use it in GitHub Desktop.
Save abarza/10749323 to your computer and use it in GitHub Desktop.
Stop videos when you close the modal box
$(document).ready(function(){
$('.modal').each(function(){
var src = $(this).find('iframe').attr('src');
$(this).on('click', function(){
$(this).find('iframe').attr('src', '');
$(this).find('iframe').attr('src', src);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment