Перемешать детей - CSS-хитрости

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); )); );

использование

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

См.
Функцию Pen jQuery Shuffle от Криса Койера (@chriscoyier)
на CodePen.