Bland barn - CSS-triks

Anonim
$.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); )); );

Bruk

$(".parent-element").shuffleChildren();

Se Pen
jQuery Shuffle-funksjonen av Chris Coyier (@chriscoyier)
på CodePen.