Thanks for the reply.
That post doesn't seem to explain how to make an object based on data on a seperate webpage, just how to construct an object from scratch.
Google provides this little snippet of code:
for (i = 0; i < myJSONResult.results.length; i++) {
myAddress[i] = myJSONResult.results[i].formatted_address;
}
and I'm just trying to figure out how to make make myJSONResult from the data at the provided URL (in my the first post).
Thanks Again,
Alex