Advertisement
orksnork

Untitled

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