Sort list item by it's value
Sort list item by it's value
So if I have a list like this
<ul>
<li>2</li>
<li>4</li>
<li>1</li>
<li>3</li>
</ul>
How can I sort them so they end up like:
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
?
Topic Participants
nd00jan
jakecigar