Created
November 16, 2018 11:01
-
-
Save alepez/d7020a39fbcb988bed76554a829a357d to your computer and use it in GitHub Desktop.
extract csv from eventbrite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When you don't have permissions to export to csv | |
$('#report-summary-popup table tr').map((i, e) => [$(e).find('td').map((i, e) => $(e).text().trim()).get()]).get().map(x => x.slice(1, x.length).join(',')).join('\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment