Ben böyle bir liste var:
<li> <input value="1" name="bla[]" /> </li>
<li> <input value="2" name="bla[]" /> </li>
<li> <input value="3" name="bla[]" /> </li>
(Her zaman aynı sırada)
ve bunun gibi bir dizi
array('3', '1', '2');
but the order of the values in the array can change anytime. Can the list above be sorted with jQuery based on the array order?