Skip to content

Instantly share code, notes, and snippets.

@shubham-1310
Forked from AstralJohn/Reset Udemy Progress.md
Created March 14, 2022 18:58
Show Gist options
  • Select an option

  • Save shubham-1310/c50478eb839afd0a6df39b916f6a309d to your computer and use it in GitHub Desktop.

Select an option

Save shubham-1310/c50478eb839afd0a6df39b916f6a309d to your computer and use it in GitHub Desktop.
Reset Udemy Progress

Reset Udemy Progress

Last Updated: 02/11/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

@shubham-1310
Copy link
Copy Markdown
Author

This line of code is to reset the progress of udemy courses

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