I've used the iframe function to embed videos, and i'm hiding/showing the content and videos through javascript. I have ONE problem. When i press play on the first video, and then click on the next without stopping the first one, the first one just keeps on playing.

What can i do to stop the video in the "background", when showing new content?

    $(function(){
    $("#link1").click(show1);
});


function show1(){
    $("#pic1").fadeIn();
    $("#pic2").hide();
}

I'm just using this simple javascript function, where the "pic1" and "pic2" id is the id of the div, the video are embedded in.

Just can't seem to make it work. Tried to put remove, but then you can't see the video again if you want to.

link|improve this question

56% accept rate
possible duplicate of video won't stop when div is hidden – Rob W Jan 19 at 19:09
1  
@xbonez Your question is not about a framed youtube video. – Rob W Jan 19 at 19:12
I've tried, but i get kinda confused of the togglevideo-thing. I got about 7 videos, which will mean 7 diff id's of video, and 7 id's for a thumbnail. Wouldn't that be a lot of code? [andreasbense.dk] It's on this page, under "video". – Sabine Quardon Jan 19 at 19:19
I fixed it. Added "onClick="player.stopVideo();" to all my links. and it worked - in firefox.. Not sure it's working in google chrome. – Sabine Quardon Jan 19 at 19:40
feedback

closed as too localized by Rob W, casperOne Jan 23 at 19:17

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

This is an implementation of the YouTube player API, without loading additional files. To get this work, you have to prefix all of your <iframe>'s src attribute with ?enablejsapi=1.

Example (I broke the code over a few lines for readability, you can safely omit the linebreaks):

<div id="pic3">
    <iframe width="640" height="390"
            src="http://www.youtube.com/embed/Xub4grFLbQM?enablejsapi=1"
            frameborder="0" allowfullscreen></iframe>
</div>

<div id="tS2" class="jThumbnailScroller">
.. Removed your code for readability....
    <a href="#vid3" id="link3"><img src="images/thumbs/player2.jpg" height="85"/></a>
    ....

JavaScript + jQuery code:

$(function() {
    /* elt: Optionally, a HTMLIFrameElement. This frame's video will be played,
     *       if possible. Other videos will be paused*/
    function playVideoAndPauseOthers(frame) {
        $('iframe[src*="http://www.youtube.com/embed/"]').each(function(i) {
            var func = this === frame ? 'playVideo' : 'pauseVideo';
            this.contentWindow.postMessage('{"event":"command","func":"' + func + '","args":""}', '*');
        });
    }
    $('#tS2 a[href^="#vid"]').click(function() {
        var frameId = /#vid(\d+)/.exec($(this).attr('href'));
        if (frameId !== null) {
            frameId = frameId[1]; // Get frameId
            playVideoAndPauseOthers($('#pic' + frameId + ' iframe')[0]);
        }
    });
});
link|improve this answer
You're awesome! THANK YOU :-D – Sabine Quardon Jan 25 at 21:59
feedback

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