Skip to content

Instantly share code, notes, and snippets.

@danishjafri
Created November 13, 2021 08:44
Show Gist options
  • Save danishjafri/a23f3d880d2f4c4ef9dddbd058748d13 to your computer and use it in GitHub Desktop.
Save danishjafri/a23f3d880d2f4c4ef9dddbd058748d13 to your computer and use it in GitHub Desktop.
Reset Udemy Progress
document.querySelectorAll('[data-purpose="progress-toggle-button"]').forEach((x) => {
if (x.checked == true) {
x.checked = false;
console.log('Completed');
}
else {
console.log('Incomplete');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment