I have a aspx file like has HTML like below:

I want to get the value 37.23961( as seen above).
how do i get this value ( td with iindex 6 of table 'gridview2) using javascript ?
MyHTML:
<table rules="all" id="GridView2" style="width:542px;border-collapse:collapse;" border="1" cellspacing="0">
<tbody>
<tr>
<th scope="col">hname</th>
<th scope="col">haddress</th>
<th scope="col">hphone</th>
<th scope="col">hhours</th>
<th scope="col">hrating</th>
<th scope="col">hlat</th>
<th scope="col">hlong</th>
</tr>
<tr>
<td>Kaiser Permanante</td>
<td>200 Fremont boulevard</td>
<td>5105199000</td>
<td>Mon-Fri : 8:00 AM - 11:00 PM, Sat, Sun: 10:00 AM- 6:00PM</td>
<td>3</td>
<td>37.23961</td>
<td>-121.800278</td>
</tr>
</tbody>
</table>
alert(document.getElementById("GridView2").getElementsByTagName("td")[5].innerHTML)try this