Skip to content

Instantly share code, notes, and snippets.

@dolohow
Created May 2, 2022 10:15
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 dolohow/68060c9c95935a452d89e569ec5c5a0a to your computer and use it in GitHub Desktop.
Save dolohow/68060c9c95935a452d89e569ec5c5a0a to your computer and use it in GitHub Desktop.
Remove all garmin courses
document.querySelectorAll('.icon-trash').forEach((r, i) => {
setTimeout(() => {
r.click();
document.querySelector('.btn-primary').click();
}, i * 2000)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment