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

is it possible, to add auto numeric classes to a list by using jquery?

html:

<ul id="list">
 <li>Element 1</li>
 <li>Element 2</li>
 <li>Element 3</li>
 <li>Element 4</li>
 <li>Element 5</li>
</ul>

i want to get something like this:

<ul id="list">
 <li class="1">Element 1</li>
 <li class="2">Element 2</li>
 <li class="3">Element 3</li>
 <li class="4">Element 4</li>
 <li class="5">Element 5</li>
</ul>

hope there is a solution available :-)


Edit

ok, mhhm but my list has not always a number at the end. so what's about a classname combination, like "item + number" ? is something like this possible?

<ul id="list">
 <li class="item1">Element x</li>
 <li class="item2">Element c</li>
 <li class="item3">Element a</li>
 <li class="item4">Element d</li>
 <li class="item5">Element f</li>
</ul>
share|improve this question
I think you should add classes before page renders inside for loop – ant Apr 15 '10 at 14:20

6 Answers

   $("#list li").each(function(i) {
     this.addClass("item"+(i+1));
    });

Here it is in action

http://jsbin.com/ocake

Update per comments, as in example link this works :

$(document).ready(function() {
        $("#list li").each(function(i) {
        $(this).addClass("item" + (i+1));
        });
      });

But I think initial code should work by adding :

this = $(this);

But not sure.

share|improve this answer
this should be $(this) – Nimbuz Aug 10 '12 at 18:04
@Nimbuz updated answer, thanks – ant Aug 10 '12 at 21:43
$("#list").children().each(function(i) {
  $(this).addClass("prefix_" + (i+1));
});
share|improve this answer
2  
+1, simplest solution and doesn't require string parsing. Small fix: should be this.addClass(i+1). – interjay Apr 15 '10 at 14:33
This is assuming you want to add the class based on the elements position, as opposed to the text contained inside it (which everyone else seems to have assumed..) – Jeriko Apr 15 '10 at 14:33
Ah yes, i+1, thanks :D – Jeriko Apr 15 '10 at 14:33
thanks :-), but that function does not work, also the i+1 fix doesn't :-?? – Svensson Apr 15 '10 at 14:44
corrected it, should work now! – Jeriko Apr 15 '10 at 14:51
show 4 more comments

CSS 2 has some special rules relating to numeric class names. See the grammar, specifically "class" within G.1, "nmstart" in G.2, and the final bullet point in G.3.

Using classes .c1 through .c5:

$('#list li').each(function(){
    $(this).addClass( 'c' + $(this).text().substr(-1) );
});

Note that this assumes the very last character of the <li> is a number. You may have to tweak (possibly using regex) for your exact use case.

share|improve this answer
I think numbers are allowed - see the last line in your link. – interjay Apr 15 '10 at 14:27
Ah, thanks for pointing it out. This was a case where years ago I hit a browser that didn't support numeric classes, so I stopped using them, then this post prompted me to find out the "why" :) – Adam Backstrom Apr 15 '10 at 14:42
this solution only works for single-digits/characters – maček Apr 15 '10 at 16:10
@macek I know, I already pointed that out in my answer. Ostensibly this is a site for programmers, who I hope would have some ability to adapt what they are learning within this site. – Adam Backstrom Apr 15 '10 at 20:02
$('ul#list li').each(function(){
  $(this).addClass( $(this).text().split(' ')[1] );
});
share|improve this answer

ok, mhhm but my list has not always a number at the end. so what's about a classname combination, like "item + number" ? is something like this possible?

<ul id="list">
 <li class="item1">Element x</li>
 <li class="item2">Element c</li>
 <li class="item3">Element a</li>
 <li class="item4">Element d</li>
 <li class="item5">Element f</li>
</ul>
share|improve this answer
If your question has changed, you should delete this answer and instead rewrite the question. – Adam Backstrom Apr 15 '10 at 15:06
@Adam Backstrom, I cleaned this up for him. – maček Apr 15 '10 at 16:09

For jQuery 1.4.x:

$("#list > li").addClass(function(i){return "item" + (i + 1);});
share|improve this answer

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.