Advertisement
orksnork

Untitled

Dec 10th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.29 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.       $innerThis.attr("src", $innerThis.attr("src"));
  7.     }
  8.   });
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement