Как узнать значение index для th с классом date?
index
th
date
<tr> <th class="date">Date</th> <th>Name</th> <th>Surname</th> <th>Phone</th> </tr>
Спасибо!
Используйте $("table").find("th").eq(0) для выбора первой «таблицы». Демо здесь
$("table").find("th").eq(0)
Обновление: теперь я тоже обновил скрипку .
$("th").each(function(index) { if($(this).attr('class') == "date") { alert(index); } });