Skip to content

Instantly share code, notes, and snippets.

@kkotaro0111
Created December 15, 2012 03:08
Show Gist options
  • Save kkotaro0111/4291017 to your computer and use it in GitHub Desktop.
Save kkotaro0111/4291017 to your computer and use it in GitHub Desktop.
たった1行のJSコードでひたすらアイドル水着画像をあつめる http://d.hatena.ne.jp/kkotaro0111/20121215
var i = $(".MTMItemThumb").parent();
var b = $("body");
b.empty();
i.each(function(){
b.append($(this));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment