Всем привет!
Использовала плагин tablesorter(ниже ссылка) для сортировки таблицы.
если прописать несколько <tr> и <td>, то сортировка работает исправно,но у меня <tr><td> в цикле и он не работает.
Вопрос, почему такой вариант не работает?
http://www.jstoolbox.com/2008/05/14/...c-dlya-jquery/
$(document).ready(function()
{
$("#large").tablesorter();
}
);
Вот код:
<table id="large" cellspacing="0" class="tablesorter">
<thead>
<tr>
<th rowspan="2" class="head" class="headerSortUp" class="headerSortDown">Отзывы</th>
<th rowspan="2" class="head" class="headerSortUp" class="headerSortDown">Время</th>
<th rowspan="2" class="head" class="headerSortUp" class="headerSortDown">Модерация</th>
<th rowspan="2" class="head" class="headerSortUp" class="headerSortDown">Выборка</th>
</tr>
</thead>
<?php
if(!$table) die("Error_select: " . mysql_error());
$rows = mysql_num_rows($table);
for($j=0; $j<$rows; $j++){
$row = mysql_fetch_row($table);
?>
<tbody>
<tr>
<td> <?php echo $row[0] ?></td>
<td> <?php echo $row[1] ?></td>
<td> <?php echo $row[2] ?></td>
<td><form action="adminka.php" method="post">
Добавить<input type="checkbox" id="select_1" name="act1[<?php echo $row[3]?>]">
На модерации<input type="checkbox" id="select_0" name="act0[<?php echo $row[3]?>]">
Удалить<input type="checkbox" id="delete" name="act3[<?php echo $row[3]?>]"></td>
</tr>
</tbody><?php }?>
</table>