Skip to content

Instantly share code, notes, and snippets.

@joduplessis
Created July 15, 2019 11:47
Show Gist options
  • Save joduplessis/45ded68881140b3643cc08f759312c2d to your computer and use it in GitHub Desktop.
Save joduplessis/45ded68881140b3643cc08f759312c2d to your computer and use it in GitHub Desktop.
Get a list of all cards on a Trello board (the easy way).
document.querySelectorAll(".list-card-title").forEach(n => console.log(n.textContent.substring(4)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment