I have an ordered list, but I want to number is manually in a separate span tag than use the default list-style: decimal;

<ol>
 <li><span>1</span> item 1</li>
 <li><span>2</span> item 2</li>
</ol>

How can I achieve this using jQuery?

Many thanks!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted
$(function() {
  $("ol > li").each(function(i, n) {
    $(this).prepend("<span>" + (i+1) + "</span> ");
  });
});

You'll need to disable the standard markers too:

ol { list-style-type: none; }

Adjust as required.

link|improve this answer
Meh. Beat me to it. :-) +1 – Tomalak Oct 15 '09 at 8:32
2  
wow, is there anything you can't do with jQuery? :) – Nimbuz Oct 15 '09 at 8:32
Heavier than air flying machines. – Karl Johan Oct 15 '09 at 8:43
Oh, just one problem, it starts from 0, how do I make it to start from 1? Thansk! – Nimbuz Oct 15 '09 at 8:44
Er, the example above starts at 1. That's why it's (i+1). – cletus Oct 15 '09 at 9:30
feedback

Your Answer

 
or
required, but never shown

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