On this page

List Trello Cards After a Specific One

List the cards contents after a given card content inside the browser. Useful to generate a quick report from your Trello board.

This example lists all the cards placed after then one with "End of June" title.

Open the developer tool in your browser and type in:

$(":contains('End of June')")
    .parent("a.list-card")
    .nextAll("a.list-card")
    .find(".list-card-title")
    .toArray()
    .map(a => a.innerText)

To build a bullet list:

items = $(":contains('End of June')")
    .parent("a.list-card")
    .nextAll("a.list-card")
    .find(".list-card-title")
    .toArray()
    .map(a => a.innerText);

console.log("- " + items.join("\n- "))