My first delve into working with JSON data. I have a bit of experience using jQuery though.
I\'m posting to this URL (tumblr api): jyoseph.com/api/read/json
What
If there are dashes in the names you'll need to access them differently. Change var photo500 = this.photo-url-500; to read var photo500 = this["photo-url-500"];.
var photo500 = this.photo-url-500;
var photo500 = this["photo-url-500"];