Shuffle child elements with jQuery
jQuery.fn.shuffleChildren = function(){
    var p = this[0];
    for (var i = p.children.length; i >= 0; i--) {
        p.appendChild(p.children[Math.random() * i | 0]);
    }
};Usage:
$('ul').shuffleChildren();Written by Jose Luis Quintana
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
 #Jquery 
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#

 
 
 
 
