- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi,
I have the following html
<ul class="jcarousel-controls"
<li><a class="first 1" href="javascript:void(0);"
<li><a class="prev" href="javascript:void(0);"
<li><a class="next" href="javascript:void(0);"
<li><a class="last" href="javascript:void(0);"
</ul>
I have several ".jcarousel-controls" and need to iterate through each as I must do some navigation from each element.
Now, I am using the following JQuery code, and simply want to addClass to the last <li> child - simple right!
But, it gets difficult for me when using the $(this) operator and I cannot find any information on how to concatenate statements etc.
The code I have is:
$(".jcarousel-controls").e
{
var obj = $(this).select(":last-chil
var len = 10; //code here usually finds out the number of photos listed above each "jcarousel-controls" and is why I must iterate using each statement.
//add last selector to controls.
//$(obj).addClass(len);
});
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: smaccaPosted on 2009-07-29 at 20:38:03ID: 24976537
This following code works:
ach(functi on() ldren("a.l ast"); l").childr en("ul").c hildren("l i").length ; ng());
$(".jcarousel-controls").e
{
var obj = $(this).children("li").chi
var len = $(this).prev("div.jcarouse
$(obj).addClass(len.toStri
});
Can it be optimised??