У меня есть эта таблица
<table id="tblId">
<thead>
<tr>
<th>View Name</th>
<th>View Description</th>
</tr>
</thead>
<tbody>
<tr id="1">
<td>Name</td>
<td><span onclick="jsFunction()">description</span></td>
</tr>
<tr id="2">
<td>Name</td>
<td><span onclick="jsFunction()">description</span></td>
</tr>
</tbody>
</table>
В событии onclick каждого диапазона мне нужно отправить js функцию идентификатору строки этой конкретной строки. Как это сделать?
Спасибо!