Skip to content

Instantly share code, notes, and snippets.

@yocontra
Created March 27, 2013 06:38
Show Gist options
  • Save yocontra/5252223 to your computer and use it in GitHub Desktop.
Save yocontra/5252223 to your computer and use it in GitHub Desktop.
faces json output script
JSON.stringify($("img").map(function () {
var e = $(this);
return {
url: e.parent().attr('href'),
image: e.attr('src')
};
}).get());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment