Skip to content

Instantly share code, notes, and snippets.

@aedorado
Created September 18, 2016 18:10
Show Gist options
  • Save aedorado/da9895f1e93cd4767711949e95aa7176 to your computer and use it in GitHub Desktop.
Save aedorado/da9895f1e93cd4767711949e95aa7176 to your computer and use it in GitHub Desktop.
$.each($('.organization-card__container'), function() {
console.log($(this).attr('aria-label').substring(17));
$(this).find('.organization-card')[0].click();
console.log($('.organization-card--detail').find('.organization-card__precis').text());
var lis = $('.organization__tag'); olist = [];
for (i = 0; i!=lis.length; i++) { olist.push(lis[i].innerHTML); }
console.log(olist.join());
console.log('\n')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment