Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using jQuery, is it possible to assign a class to an object based on its index?

For example, if I have an ul with five list items, how would I assign the class "0" to the first item, "1" to the second item, "2" to the third, item and so on?

This was my first attempt:

$('ul.nav li').each(function(index){
  $(this).addClass(index);
});
share|improve this question
   
your code seems fine. – thecodeparadox May 18 '12 at 16:30
2  
Your real problem is that classes can't start with numbers. Other than that this technique is fine. Append some text on the front of those classnames and you're good to go. – Surreal Dreams May 18 '12 at 16:38

4 Answers

up vote 4 down vote accepted

But avoid to start class or id with number;

$('ul.nav li').each(function(index){
  $(this).addClass('at_'+ index);
});
share|improve this answer
This solution I'm guessing is a little cleaner since the each function is passed in the index, there is no reason to have to reference $(this) again. – lucuma May 18 '12 at 16:45

Bearing in mind that classes can't start with numbers, something like this should do:

$('ul.nav li').each(function(){
  $(this).addClass("index_"+$(this).index);
});
share|improve this answer
Here's a fiddle that demonstrates just this: jsfiddle.net/8a5ne – Surreal Dreams May 18 '12 at 16:35
Oh, cool, thanks for the fiddle, @SurrealDreams. :-) – Elliot Bonneville May 18 '12 at 16:36
No problem. I'd have posted it with my answer if you hadn't beaten me to it. :) – Surreal Dreams May 18 '12 at 16:37

Class names should not start with numbers. Instead do something like

$('ul.nav li').each(function(index){
  $(this).addClass("class_"+index);
});
share|improve this answer

It is working for me with this:

$('ul.nav li').each(function(index){
  $(this).attr('class', 'class'+index);
});​

http://jsfiddle.net/8JCXD/7/

share|improve this answer
It may work for you however In CSS, identifiers (including element names, classes, and IDs in selectors) can contain only the characters [a-z0-9] and ISO 10646 characters U+00A1 and higher, plus the hyphen (-) and the underscore (_); they cannot start with a digit, or a hyphen followed by a digit. More info here: stackoverflow.com/questions/448981/… – lucuma May 18 '12 at 16:41
@licuma: It is another lecture class. I did what OP asked. – NAVEED May 18 '12 at 16:47
Fixed anyway... – NAVEED May 18 '12 at 16:49
I removed the downvote. – lucuma May 18 '12 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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