Created
July 25, 2014 20:29
-
-
Save javierarce/297f837db0f91c43564a to your computer and use it in GitHub Desktop.
Retrieve the locations from Kickstarter
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
var locations = []; | |
$(".location").each(function(i, l) { | |
locations.push($.trim($(l).text())) | |
}); | |
echo locations; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment