html video on end

Solutions on MaxInterview for html video on end by the best coders in the world

showing results for - "html video on end"
Mathys
02 Jul 2019
1<!-- Answer to: "video tag html" -->
2
3<video width="320" height="240" controls onended="alert('the vedio has ended')">
4  <source src="movie.mp4" type="video/mp4">
5  <source src="movie.ogg" type="video/ogg">
6  Your browser does not support the video tag.
7</video>
8
9<!-- The <video> tag is used to play videos... obviously -->