I'm trying to attach some events to an HTML5 Video element inside my iPad web app but they don't seem to be firing? I've tested this both on the device and in the simulator and get the same results. The events however (for the onclick at least) work fine in desktop Safari. I've also tried swapping the video element for a div and the events fire fine? Has anybody else come across this and have an idea for a work around?

<html>
        <head>
                <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
                <title>Test video swipe</title>
        </head>
        <body>

                <video src='somevid.mp4' id='currentlyPlaying' width='984' height='628' style='background-color:#000;' controls='controls'></video>

                <script>
                        var theVid = document.getElementById("currentlyPlaying");

                                theVid.addEventListener('touchstart', function(e){
                                        e.preventDefault();
                                        console.log("touchstart");
                                }, false);

                                theVid.addEventListener('click', function(e){
                                        e.preventDefault();
                                        console.log("click");
                                }, false);

                                theVid.addEventListener('touchmove', function(e){
                                        console.log("touchmove");
                                }, false);

                                theVid.addEventListener('touchend', function(e){
                                        console.log("touchend");
                                }, false);

                                theVid.addEventListener('touchcancel', function(e){
                                        console.log("touchcancel");
                                }, false);



                </script>
        </body>
</html>
link|improve this question

60% accept rate
feedback

2 Answers

up vote 10 down vote accepted

The video element, on the iPad, will swallow events if you use the controls attribute. You have to provide your own controls if you want the element to respond to touch events.

link|improve this answer
Brilliant! that worked! I've come across quite a few inconstancies with mobile Safari and desktop Safari. Some of them like disabling autoplay on video are documented on the apple site but there seem to be loads of undocumented quirks or dare I say bugs! Do you know of any resources that list these differences? – ad rees Sep 27 '10 at 14:19
I couldn't make it work :(. How exactly are you creating the video element? Mine looks like <video style="background:black;display:block" id="vid" height="240px" width="320px" src="source"></video> and in JS i'm doing document.getElementById("vid").addEventListener('click', function(e){ e.preventDefault();alert("clicked");}); It works fine on desktop safari but not on ipad/iphone. Please suggest some workaround. – bhups Jan 10 '11 at 10:20
@bhups — if you have a question, ask a question, don't just comment on someone else's answer to a different problem. – Quentin Jan 10 '11 at 10:50
hi David, my problem is same but I'm not clear how removing controls attribute is solving this problem. I tried doing the same without any success. I didn't ask as it might sound like duplicate of this question. – bhups Jan 10 '11 at 11:01
Since you have removed the controls attribute, it is clearly not the same question. Even if it was, you could reference this question and explain how your problem differs. – Quentin Jan 10 '11 at 13:13
show 1 more comment
feedback

From my own rather painful experiences over the last couple of weeks I can begin such a list (at least for iPad 3.2). Some of these "features" may be documented, but the relevant sentence is often difficult to find.

  • The volume property is ignored (you can set it, and it will appear to change, but the actual volume on the device will not be affected).
  • The currentTime property is read-only. My workaround for this is to call load(), which at least allows me to reset to the beginning of the clip.
  • the onended event will not post reliably unless the controls are visible. My workaround for this is to monitor the timeupdate event and compare the currentTime to the duration
  • as you say, autobuffer and autoplay are disabled.
  • video will not cache locally regardless of the application cache settings.
  • many css rules don't seem to function as expected when applied to the <video> tag - eg. opacity and z-index both seem ineffectual, which means you cannot dim or hide a video. You can set display:none, but that is very abrupt.

As I say, this is probably not an exhaustive list, and I'd welcome additions or corrections.

(Also, after much googling, I found a list here of the meagre subset of QT Plugin methods and properties that are supported on Mobile Safari).

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.