if you have no events attached to <td>s and contents are just text, this will do:
var tds = $('table tr').sort(function(a,b){
return $('td:eq(0)',a).text() > $('td:eq(0)',b).text();
});
$('table').html(tds);
jsfiddle demo
that depends... how would you order it? please be more specific.
will to give you a hint, you might wanna check out:
.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
.before()
Insert content, specified by the parameter, before each element in the set of matched elements.
.insertAfter()
Insert every element in the set of matched elements after the target.
.insertBefore()
Insert every element in the set of matched elements before the target.
you're funny. :p
you said you know those functions then you did not get to solve the problem.
anyway, here are some of the ways to do it: http://jsfiddle.net/reigel/7Pb6a/1/