Я хочу отсортировать свою таблицу с помощью jQuery Plugin TableSorter. Итак, я получаю эту таблицу:
<table id="stats" class="zebra-striped">
<thead>
<tr>
<th>Date</th>
<th>Annonce</th>
<th>Support</th>
<th>Nb Assoc.</th>
<th>Nb Transfo.</th>
<th>Cout</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
Итак, как вы можете видеть, моя таблица пуста, только что имел заголовок. Поэтому я запускаю TableSorter с пустой ячейкой с:
$("table#stats").tablesorter({ sortList: [[0,0]]});
и сразу же я получаю эту ошибку:
jquery.tablesorter.min.js:4 Uncaught TypeError: Cannot read property '0' of undefined
К вашему сведению, загружены мои js:
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.5.1.min.js">\x3C/script>')</script>
<script src="js/bootstrap-dropdown.js"></script>
<script src="js/bootstrap-scrollspy.js"></script>
<script src="js/jquery.tablesorter.min.js"></script>
Есть идеи, почему я это понял и как я могу заставить плагин работать снова?
Thx