Skip to content

Instantly share code, notes, and snippets.

@SahilMahadwar
Forked from JohnDinhDev/Reset Udemy Progress.md
Created August 20, 2022 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SahilMahadwar/74b7d3fffc042bc55e2068d3da21848c to your computer and use it in GitHub Desktop.
Save SahilMahadwar/74b7d3fffc042bc55e2068d3da21848c to your computer and use it in GitHub Desktop.
Reset Udemy Progress

Reset Udemy Progress

Last Updated: 08/06/2022

Step 1. Go to Udemy course in browser

Go to the course and have any video up. The following code relies on the right sidebar to be visible to uncheck all your progress.

Step 2. Open browser console

You can do this with ctrl+shift+j and making sure the console tab is selected for chrome/brave

For FireFox, use ctrl+shift+i and select the console tab

Step 3. Run code in browser console

Copy and paste this code in the console Hit the enter key to run

// Stores all unexpanded section headers, and clicks on the unexpanded section headers to expand them
const sectionEl = document.querySelectorAll("section[data-purpose='sidebar'] div.udlite-btn");
sectionEl.forEach((section) => {
  const isClosed = section.parentElement.querySelector("span").getAttribute("data-checked") !== "checked"
  if (isClosed) section.click()
});

// Stores all checkboxes on the page, and clicks on any checkboxes on that currently checked
const checkboxes = document.querySelectorAll("input[type='checkbox']");
checkboxes.forEach((checkbox) => {
  if(checkbox.checked) {
    checkbox.click();
  }
})

Note that your Udemy progress % will not update back to 0%. This is on Udemy's server's end, which I can't control. If you start going through the course again, having a few sections checked off, the percentage should update accordingly.

If this helped you and you want to show your appreciation, consider buying me a coffee ☺ https://ko-fi.com/johndinhdev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment