Skip to content

Instantly share code, notes, and snippets.

@philipbjorge
Last active December 14, 2015 06:39
Show Gist options
  • Save philipbjorge/5044577 to your computer and use it in GitHub Desktop.
Save philipbjorge/5044577 to your computer and use it in GitHub Desktop.
Condo Internet tsv - run on http://www.condointernet.net/buildings/ to generate output for batchgeo.com View the map at http://batchgeo.com/map/5669d2610fc85db932a4519b92a294a6
console.log("apartment\taddress");
$.each($(".buildings li"), function(i, v) {
var apartmentName = $(v).children("h2").text();
var apartmentAddress = $(v).find("strong").text();
console.log(apartmentName + "\t" + apartmentAddress);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment