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?

link|improve this question
Your randomize plug-in code is cut off in the middle. – Ken Redler Jan 8 '11 at 4:11
Sorry, here it is: (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 < elems.length; i++) $this.append(elems[i]); }); } })(jQuery); – Glen Mohr Jan 10 '11 at 15:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.