Advertisement
orksnork

Untitled

Dec 10th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function videoStopActive() {
  2. var $this = $(".carousel-inner .item.active");
  3. $this.each(function() {
  4. var $innerThis = $(this);
  5. if ($innerThis.has(".video-player iframe") || $innerThis.has(".video-player video")) {
  6. var src = $innerThis.attr("src");
  7. $innerThis.attr("src", '');
  8. $innerThis.attr("src", src);
  9. }
  10. });
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement