css
.item {
display: none;
}
html
<div>
<div class="item">machin</div>
<div class="item">chose</div>
<div class="item">chouette</div>
<div class="item">prout</div>
</div>
I'm using jQuery and I'd like to make each .item appearing after a random little timer like:
javascript
$('.item').each(function () {
itm = $(this);
setTimeout(function () {
itm.fadeIn(1000);
}, Math.floor(Math.random() * 1000));
})
Here itm will always contain the last item because the function is evaluated after all assignments.
I can't use the 3rd parameter of setTimeout() because it will not work on IE.
It's not advised to use setTimeout() with the eval method for security reasons.
So how can I access to my object through setTimeout() ?
Edit
I know that this question have already been posted.
But I though that it were slightly specific with the each() context.
Now someone have entirely changed the title of my question that was originally something like 'setTimeout() - jQuery.each() this object parameter'



thisinside ofsetTimeout()refers to the global object. Your code above shouldn't even work for the last item. – Kevin B Feb 6 '12 at 16:57itm = $(this)in my code instead ofvar itm = $(this), I updated my question. Then now I don't know which answer to accept :) – Pierre de LESPINAY Feb 6 '12 at 17:21var itmanditmis that withoutvarit is a single global variable, instead of a local variable for each call of the enclosing function. That's why the setTimeout only ever saw the last element in the list. – Izkata Feb 6 '12 at 18:59