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!