I have the table like below with "n" numbers of rows.
<table>
<tr><td>1</td></tr>
<tr><td>2</td></tr>
<tr><td>3</td></tr>
<tr><td>4</td></tr>
<tr><td>5</td></tr>
<tr><td>6</td></tr>
<tr><td>7</td></tr>
<tr><td>8</td></tr>
<tr><td>9</td></tr>
<tr><td>10</td></tr>
</table>
<span class="more">Show more</span>
Initially on page load, I want to show only two rows. And if i click "more" link, i just want to visible or show 3 more rows for every click.
How to get this with jquery. Example code here. Thanks in advance.