How to catch Youtube player's dragging/skipping/forwarding event with API in javascript
I'm looking at the documentation for onStateChange, but I don't find anything the even when user will be dragging the player timer left or right. In fact, onStateChange doesn't catch anything when I do that. This is from the documentation: https://developers.google.com/youtube/iframe_api_reference This event fires whenever the player's state changes. The data property of the event object that the API passes to your event listener function will specify an integer that corresponds to the new player state. Possible values are: -1 (unstarted) 0 (ended) 1 (playing) 2 (paused) 3 (buffering)f 5