$.fn.shuffleChildren = function() ( $.each(this.get(), function(index, el) ( var $el = $(el); var $find = $el.children(); $find.sort(function() ( return 0.5 - Math.random(); )); $el.empty(); $find.appendTo($el); )); );
Stosowanie
$(".parent-element").shuffleChildren();
Zobacz funkcję Pen
jQuery Shuffle autorstwa Chrisa Coyiera (@chriscoyier)
na CodePen.