Skip to content

Instantly share code, notes, and snippets.

@thebentern
Last active December 31, 2016 15:19
Show Gist options
  • Save thebentern/aff6fed1e94af10ddbe7 to your computer and use it in GitHub Desktop.
Save thebentern/aff6fed1e94af10ddbe7 to your computer and use it in GitHub Desktop.
Scrape FLUX
// Scrape visible task numbers
$('[id^="task-"] > div > span > span.key.ng-scope > a:visible').map(function() {
return $(this).text()
})
.get()
.join('\n');
// Scrape visible task numbers stories
$('[id^="task-"]> div > div.title.flux-lg-6.flux-order-lg-1.flux-md-12.flux-order-xs-4.flux-xs-12 > div:visible').map(function() {
return $(this).text()
})
.get()
.join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment