Advertisement
orksnork

Untitled

Dec 10th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.71 KB | None | 0 0
  1. function videoStopActive() {
  2.   var $this = $(".carousel-inner .item.active");
  3.   $this.each(function() {
  4.     var iframeSrc = $(".carousel-inner .item.active .video-player iframe").attr("src");
  5.     var videoSrc = $(".carousel-inner .item.active .video-player video").attr("src");
  6.     if ($this.has(".video-player iframe")) {
  7.       $(".carousel-inner .item.active .video-player iframe").attr("src", '');
  8.       $(".carousel-inner .item.active .video-player iframe").attr("src", iframeSrc);
  9.     } else if ($this.has(".video-player video")) {
  10.       var vidId = $(".carousel-inner .item.active .video-player video").attr('id');
  11.       var myVideo = document.getElementById(vidId);
  12.       myVideo.load();
  13.     }
  14.   });
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement