■順番を逆にする
http://unformedbuilding.com/articles/reverse-order-with-jquery/
■シャッフルする
どっかでいただいてきて重宝している
[html]
$.fn.extend ({
shuffle: function() {
$.shuffle = function(arr) {
for(var j, x, i = arr.length; i; j = parseInt(Math.random() * i), x = arr[–i], arr[i] = arr[j], arr[j] = x);
return arr;
}
return this.each(function(){
var items = $(this).children().clone(true);
return (items.length) ? $(this).html($.shuffle(items)) : this;
});
}
});
[/html]
コメントを残す