Есть таблица
<table>
<tbody>
<tr>
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="8">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="12">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="2">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="7">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="0">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="0">
<th>cell 1</th>
<th>cell 2</th>
</tr>
</tbody>
</table>
Нужно ее строки отсортировать по параметру data-sort, по убыванию, чтоб было так:
<table>
<tbody>
<tr data-sort="12">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="8">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="7">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="2">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="0">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr data-sort="0">
<th>cell 1</th>
<th>cell 2</th>
</tr>
<tr>
<th>cell 1</th>
<th>cell 2</th>
</tr>
</tbody>
</table>
Как это сделать наиболее лучшим или простым способом? (с помощью jquery)