Created
September 26, 2013 03:10
-
-
Save monyskynet/6709393 to your computer and use it in GitHub Desktop.
Randomize a sequence of div elements with jquery From http://stackoverflow.com/questions/1533910/randomize-a-sequence-of-div-elements-with-jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.randomize = function(childElem) { | |
return this.each(function() { | |
var $this = $(this); | |
var elems = $this.children(childElem); | |
elems.sort(function() { return (Math.round(Math.random())-0.5); }); | |
$this.remove(childElem); | |
for(var i=0; i < elems.length; i++) | |
$this.append(elems[i]); | |
}); | |
} | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment