Skip to content

Instantly share code, notes, and snippets.

@iwek
Last active December 14, 2015 13:19
Show Gist options
  • Save iwek/5092555 to your computer and use it in GitHub Desktop.
Save iwek/5092555 to your computer and use it in GitHub Desktop.
Show the sorted images on Pinterest
//empty main section
$(".Grid").before('<div id="organized"/>').remove();
//append sorted items
$.each(list, function(idx, itm) {
$("#organized").append($(itm).parents('.Pin'));
});
//style it up
$('.Pin').css({'clear': 'both', 'position': 'static'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment