I am attempting to display a series of images in a random order. However, I do not want any single item to repeat until all items have been shown, so instead of selecting a
You can also use the common JavaScript Array randomize sorter, also commented here and here:
$('').sort( function(){ return ( Math.round( Math.random() ) - 0.5 ) } );