Lavdislav,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
</head>
<body>
<table id="induzd">
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
<script>
var table1 = document.getElementById('induzd'),
rows1 = table1.rows,
text1 = 'textContent' in document ? 'textContent' : 'innerText';
for (var i1 = 1; i1 < rows1.length; i1++) {
rows1[i1].cells[0][text1] = i1 + rows1[i1].cells[0][text1];
}
</script>
</body>
</html>