skip to Main Content

I have an online lecture on the website, I need to view the lectures from beginning to end and I can’t rewind, how can I do it so that I can rewind, maybe through the element code in Google Chrome?

I try through chatgpt code add to console, but they cant give me acces in google chrome code

2

Answers


  1. Chosen as BEST ANSWER

  2. const videoElement = document.getElementsByTagName("video")[0];

    videoElement.currentTime = 0; // specify exact time you want to set in seconds

    https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/currentTime

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search