I am trying to implement ":random" selector which selects a random element from a stack of elements.

Here's the code: http://jsfiddle.net/nuSWF/

The problem is the selector sometimes tries to select an element which does not exist(out of index). So I prepared the demo code which highlights the cause but I don't understand why. I seems it is a bug or something.

P.S: I know I could select a random element with other methods but this time I have to implement this, also wondering what's going on inside.

link|improve this question

I'm not sure, but isn't length always one more than the maximum index? (length = 10 elements last element = 9) – Pekka Dec 4 '10 at 12:17
Also, what values does the index have when it fails? – Pekka Dec 4 '10 at 12:18
feedback

1 Answer

up vote 2 down vote accepted

What you're seeing with the stack length is normal, it's just evaluating the :random selector on all <a> elements in mydiv1 before the > child selector, so the length at that point is 4.

For example, this would produce the result you're expecting:

var elements2 = $('#mydiv1>a').filter(':random');

You can test it out here.


So what's happening overall is your selector is indeed filtering to random <a> elements...but those may or may not be further filtered out by the > child selector later (if they're under a <span>, they get filtered). This is true of all selectors if you think about it...any filter you perform just reduces the set of elements...they may further filtered later by more selectors.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.