These examples add an event listener for the HTMLMediaElement's timeupdate
event, then post a message when that event handler has reacted to the event firing. Remember, the event frequency is dependant on the system load.
Using addEventListener()
:
const video = document.querySelector("video");
video.addEventListener("timeupdate", (event) => {
console.log("The currentTime attribute has been updated. Again.");
});
Using the ontimeupdate
event handler property:
const video = document.querySelector("video");
video.ontimeupdate = (event) => {
console.log("The currentTime attribute has been updated. Again.");
};
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4