I have a bunch of divs with the ID "gallerycard". I need them to load in a random order every time the user visits the page.
<div id="gallerycard">
<div id="name">Akulina</div>
<div id="info">N/A</div>
</div>
<div id="gallerycard">
<div id="name">Martina</div>
<div id="info">N/A</div>
</div>
<div id="gallerycard">
<div id="name">Joseph</div>
<div id="info">N/A</div>
</div>
<div id="gallerycard">
<div id="name">Karen</div>
<div id="info">N/A</div>
</div>
...
And...
Here's the fiddle with CSS: http://jsfiddle.net/BwJHj/
I know this is a simple task for most of you but I really struggle with jquery at times :(
Thank you