Skip to content

Instantly share code, notes, and snippets.

@Maxghp
Created January 8, 2018 11:02
Show Gist options
  • Save Maxghp/bb6c08489a958f2d877b141e3757e744 to your computer and use it in GitHub Desktop.
Save Maxghp/bb6c08489a958f2d877b141e3757e744 to your computer and use it in GitHub Desktop.
Stop all vimeo video when close modal
//stop all vimeo videos when close
//jquery require
$(function(){
$('.modal, .close').click(function(){
$("iframe").each(function() {
var src= $(this).attr('src');
$(this).attr('src',src);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment