This is what I have:
$(function(){
$('.apple').appendTo('.container');
});
Now, lets say I have 20 different divs with class name .apple.
How can I have them append into Container randomly? So every time that I load the page the order would be different.
Thank you in advance!