The API documentation does not contain an obvious way to trigger a javascript event when a YouTube video reaches a certain time stamp. Do you know any workaround?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can create a timer which check at second whether video has reached certain timestamp. To restrict unnecessary function calls, start time only when it reaches your set time
|
|||||
|
|
|
To avoid unnecessary processing, you can wait for player to enter PLAYING state, then, put a setTimeout function with the remaining time until time stamp. In case of buffering, anytime the player resumes PLAYING states, call the same function, which clears the previous setTimeout and sets the new one (if remaining time positive) Here is the jsfiddle POC : http://jsfiddle.net/V6rgy/ |
|||
|
|