Показать сообщение отдельно
  #1 (permalink)  
Старый 29.12.2014, 02:11
Аватар для Sanu0074
Аспирант
Отправить личное сообщение для Sanu0074 Посмотреть профиль Найти все сообщения от Sanu0074
 
Регистрация: 16.12.2012
Сообщений: 80

Сортировка таблицы по атрибуту
Есть таблица
<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)
Ответить с цитированием