Can someone tell me why this won’t work?
var top = 0;
for (divToPosition in $('.positionableDiv')) {
divToPosition.css('top',top+'px');
top = top + 30;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The first reason would be the misuse of the
forloop.jQuery has an idiom for looping over selected elements..
Please take a look at for…in for a better understanding of the way a for…in loop works in javascript, it does not enumerate in the same way as say .NET or Java.
From Article: