Guest User

Untitled

a guest
Jan 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //stop all vimeo videos when close
  2. //jquery require
  3. $(function(){
  4. $('.modal, .close').click(function(){
  5. $("iframe").each(function() {
  6. var src= $(this).attr('src');
  7. $(this).attr('src',src);
  8. });
  9. });
  10. });
Add Comment
Please, Sign In to add comment