Created
September 18, 2016 18:10
-
-
Save aedorado/da9895f1e93cd4767711949e95aa7176 to your computer and use it in GitHub Desktop.
This file contains 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
$.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