is it possible to iterate through elements from last to first one? For example from the last parent ul in a list to the nearest parent-ul one. At the moment I use each() but it would be nice to change direction…
Thanks!
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.
You can use the
reverse()method onArrayshttps://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/reverse
or create your own function:
working example: http://jsfiddle.net/hunter/kdREt/