Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created August 27, 2022 15:52
Show Gist options
  • Save el3um4s/fc0182eec6fe6c702bac564a23f08c62 to your computer and use it in GitHub Desktop.
Save el3um4s/fc0182eec6fe6c702bac564a23f08c62 to your computer and use it in GitHub Desktop.
MEDIUM - How To Create a Simple YouTube Player With JavaScript - 09
export function getCurrentTime(iframeId) {
return Globals.ytPlayer[iframeId]["player"].getCurrentTime();
}
export function getDuration(iframeId) {
return Globals.ytPlayer[iframeId]["player"].getDuration();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment