This is a follow up to this answer: randomize-a-sequence-of-div-elements-with-jquery/4628745#4628745
I am trying to use the jquery plugin provided to randomly reorder the output from jShowOff and could use some help
I added this:
(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
But I can't seem to get it to work. Here's what happens. My items are here:
<div id="features">
<xsl:for-each select="$Rows">
<xsl:sort select="@Last_x0020_Name" />
<xsl:call-template name="dvt_1.rowview"/>
</xsl:for-each>
</div>
This works with no randomize:
$(document).ready(function(){
$('#features').jshowoff({ speed: 6000, links: false, effect: 'none' });
});
If I add randomize() it shows only the first item then nothing
$(document).ready(function(){
$('#features').randomize();
$('#features').jshowoff({ speed: 6000, links: false, effect: 'none' });
});
If I add randomize(‘features’) then it works but doesn't randomize
$(document).ready(function(){
$('#features').randomize('features');
$('#features').jshowoff({ speed: 6000, links: false, effect: 'none' });
});
Can someone help me make this work?