Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pomoc přepytać

Hladajće so wobšudstwa pomocy. Njenamołwimy was ženje, telefonowe čisło zawołać, SMS pósłać abo wosobinske informacije přeradźić. Prošu zdźělće podhladnu aktiwitu z pomocu nastajenja „Znjewužiwanje zdźělić“.

Dalše informacije

When you will implement the HTML5 video loop attribute?

  • 3 wotmołwy
  • 472 ma tutón problem
  • 78 napohladow
  • Poslednja wotmołwa wot rthawkcom
  • Archiwowany

I know there is an add-on "Media Loop" for Firefox that implements the loop attribute for HTML5 videos/audios, but I don't want to force every visitor of my site to install it.

I know there is an add-on "Media Loop" for Firefox that implements the loop attribute for HTML5 videos/audios, but I don't want to force every visitor of my site to install it.

Wšě wotmołwy (3)

A quick Jquery solution

  • $("#yourID").bind('ended', function(){
  • this.play();
  • });

Wot TimVs.be změnjeny

or just add to the video tag: onended="this.play()" No need for Jquery!

Just how do you add it to the video tag!? Next time, post a working example.

document.getElementById('video').addEventListener("ended", function(){this.play();});