[jQuery] changing the order of alist

[jQuery] changing the order of alist


HI all.
If possible i would like to have some advice on how to randomize the
order of a list.
Suppose we have such markup:
<ul>
<li>item 01</li>
<li>item 02</li>
<li>item 03</li>
</ul>
I want something that on page load, changes (hides and rewrite, i
guess) my list in a random() order, like that:
<ul>
<li>item 03</li>
<li>item 01</li>
<li>item 02</li>
</ul>
Is there a "short" way top do that?
Thanks
GC