Skip to content

Instantly share code, notes, and snippets.

@royce002
Created July 6, 2017 00:51
Show Gist options
  • Save royce002/b0720dcabe429849d661b064071438c5 to your computer and use it in GitHub Desktop.
Save royce002/b0720dcabe429849d661b064071438c5 to your computer and use it in GitHub Desktop.
Closes an iframe video on modal close
var $frame = $('iframe#yourIframeId');
// saves the current iframe source
var vidsrc = $frame.attr('src');
// sets the source to nothing, stopping the video
$frame.attr('src','');
// sets it back to the correct link so that it reloads immediately on the next window open
$frame.attr('src', vidsrc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment