Following is my basic html code of a table in my project.
<table>
<tr id='someId'>
<td><input type='checkbox'></td>
<td>data 1</td>
<td>data 2</td>
</tr>
</table>
In this table I have multiple rows nearly 100's of them and the height of the div that contains this table is small so there is a scrollbar to this div.
Some of the checkbox is selected by default and is done in jquery and works fine.
The problem is I want to display the last check box that is checked in that scrollbar as if it is at the bottom of the table then it gets hidden in that scrollbar. hence i want to scroll down where the last check box is checked so that it gets displayed directly in jquery.
please help ..