I am trying to control HTML5 videos using JQuery. I have two clips in a tabbed interface, there are six tabs in total, the others just have images. I am trying to make the video clips play when their tab is clicked and then stop when any of the others are clicked.

This must be a simple thing to do but I cant seem to get it to work, the code I am using to play the video is:

$('#playMovie1').click(function(){
  $('#movie1').play();
      });

I have read that the video element needs to be exposed in a function to be able to control it but can't find an example. I am able to make it work using JS:

document.getElementById('movie1').play();

Any advice would be great. Thanks

link|improve this question
feedback

4 Answers

up vote 18 down vote accepted

Your solution shows the issue here -- play is not a jQuery function but a function of the DOM element. You therefore need to call it upon the DOM element. You give an example of how to do this with the native DOM functions. The jQuery equivalent -- if you wanted to do this to fit in with an existing jQuery selection -- would be $('#videoId').get(0).play(). (get gets the native DOM element from the jQuery selection.)

link|improve this answer
That's great, works perfectly, thanks indeed. Good to understand the DOM better also. – Barny83 Jan 10 '11 at 15:39
Using JQuery to control video in this way seems to cause problems with playback on the iPhone. I have the video element in a tab, the jquery reveals this, but then clicking on the video start arrow does not start the clip. When I remove the $('#videoId').get(0).play() line there is no problem. What is the best way around this? I was thinking I could remove the js with a condtional statement for iOS - the video will not autostart for iOS devices anyway so would be happy to do this - or is there a simpler solution? Any help much appreciated. – Barny83 Mar 3 '11 at 15:59
feedback

Why do you need to use jQueury? Your proposed solution works, and it's probably faster than contsructing a jQuery object.

document.getElementById('videoId').play();
link|improve this answer
Check out lonesomeday's solution if you insist on a jQuery implementation (also for an explanation of why you can't just call play on a jQuery object). – sudo work Jan 10 '11 at 13:10
I was thinking I would use the code within other jQuery, and probably will do so, but as it stands I am just using that line so I guess it could have been done with the code I had... also I wasn't sure if that was good practice to mix. Thanks for the advice anyway. – Barny83 Jan 10 '11 at 15:40
1  
If you've already instantiated a jQuery object for movie1 through $('movie1') for other jQuery actions, then it's fine; however, if you're doing it just in this one place, you're going to find some performance loss. It may not be noticeable enough, but I like to optimize a lot. – sudo work Jan 11 '11 at 1:52
feedback

use this.. $('#video1').attr({'autoplay':'true'});

link|improve this answer
feedback

I use FancyBox and jQuery to embedd a video. Give it an ID.

Perhaps not the BEST solution could toggle play/pause differently - but easy for me and IT WORKS! :)

In the

`

<input type="hidden" id="current_video_playing">

<input type="hidden" id="current_video_status" value="playing">

<video id="video-1523" autobuffer="false" src="movie.mp4"></video>

<script>

// Play Pause with spacebar

$(document).keypress(function(e) { 

    theVideo = document.getElementById('current_video_playing').value

    if (e.which == 32) {

        if (document.getElementById('current_video_status').value == 'playing') {

            document.getElementById(theVideo).pause();

            document.getElementById('current_video_status').value = 'paused'

        } else {

            document.getElementById('current_video_status').value = 'playing'

            document.getElementById(theVideo).play();

        }

    }

});

</script>`
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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