"I want the index of id:Second to be 2(Considering #First as 2 columns). But with the help of $("#Second").parent().find("td").index($("#Second"))
i get 1. Any Direct function in Jquery to do this without i having to use FOR LOOPS or .each function or any sort of loop???"
<table>
<tr>
<td colspan="2" id="First">
</td>
<td colspan="2" id="Second">
</td>
</tr>
</table>