Wednesday, May 24, 2023
HomeSoftware EngineeringHow one can Reset Udemy Progress

How one can Reset Udemy Progress


If it’s essential to redo a Udemy course and also you wish to reset the course’s progress, then you should utilize the next Javascript snippet under.

You need to do that manually as a result of Udemy doesn’t present native performance to do that.

Step 1 – Navigate to Udemy in an online browser

Be sure you are on the course content material web page you wish to reset.

You’ll need to run a Javascript snippet, so press the next keyboard shortcuts, or right-click and choose Examine:

  • Chrome/Edge: ctrl+shift+j or cmd+alt+j and choose the Console panel.
  • Firefox: ctrl+shift+i or cmd+alt+i and choose the Console panel.

Step 3 – Run the customized Javascript snippet

Copy the under snippet into the console code space and press Enter to run it:

const sectionEl = doc.querySelectorAll("part[data-purpose='sidebar'] div.udlite-btn");
sectionEl.forEach((part) => {
  const isClosed = part.parentElement.querySelector("span").getAttribute("data-checked") !== "checked"
  if (isClosed) part.click on()
});

const checkboxes = doc.querySelectorAll("enter[type='checkbox']");
checkboxes.forEach((checkbox) => {
  if(checkbox.checked) {
    checkbox.click on();
  }
})
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments