cat
cat

Reputation: 749

Why this video won't start playing automatically?

Seek time is at 10 secs position, but it won't start playing automatically.
Why? and how can I fix?

My current code is just like this

<script type="text/javascript">
    document.getElementById("video").addEventListener("loadedmetadata", function() {
        this.currentTime = 10;
        this.autoplay = true;
    }, false);
</script>

Upvotes: 1

Views: 98

Answers (2)

alQemist
alQemist

Reputation: 360

FYI Some mobile devices do not respect auto play settings for video - iPad, iPhone for example

Upvotes: 1

Pavel Rybin
Pavel Rybin

Reputation: 46

Try this:

<script type="text/javascript">
document.getElementById("video").addEventListener("loadedmetadata", function() {
     this.currentTime = 10;
     this.play();
}, false);</script>

Upvotes: 2

Related Questions