I am trying to create a very basic Flickr gallery using the Flickr API. What I want to achieve is sorting my pictures by tag. What I am using is jQuery.getJSON() so that I c
Maybe something like that in your each:
each
if ( imageArray[item.tags] != null ){ imageArray[item.tags][imageArray[item.tags].length] = item.url_sq; }else{ imageArray[item.tags] = []; }