<a href="#page" class="lil-close">Close</a>

I have this button to close a lightbox. lightbox contains youtube video and when I close lightbox youtube video keeps playing, I assume this will happen with all videos (not only youtube). Is there a way (jQuery/Javascript) to pause video once user clicks a button?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Try this function which uses YouTube's API and YouTube's Chromeless Player:

function pauseVideo() {
  if (ytplayer) {
    ytplayer.pauseVideo();
  }
}

See an example here

link|improve this answer
+1 Thanks for that link – Wex Jan 15 at 21:11
It didn't work with embeded code (iframe) from youtube, but I'll try to play around with api. Thank you for the source. – Ilya Knaup Jan 15 at 21:12
No problem, glad to help – jacktheripper Jan 16 at 17:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.