Skip to content

Instantly share code, notes, and snippets.

@chadcrowell
Created April 9, 2013 19:08
Show Gist options
  • Save chadcrowell/5348469 to your computer and use it in GitHub Desktop.
Save chadcrowell/5348469 to your computer and use it in GitHub Desktop.
Mass delete files from Basecamp Classic. Open files tab in project, paste this into your console and press Enter when prompted to delete each file.
var els = document.querySelectorAll('.left .trash'); for(var i = 0; i < els.length; i++) { els[i].click(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment