So you want to have all 2000 on the page, but only show 20?
from a pure CSS standpoint, you could add display:none to any element that you don't want to show.
What I would do is set everything to hidden, and then seletively go in and set 20 to show. Perhaps with css and markup like this:
CSS
Code:
td { display:none }
td.show { display:block; }
HTML Code:
<td class="show">This Will Show</td>
<td>This Will Not</td>
What I would really do in your situation is use some PHP and database to store all those entries. But I guess that's outside the scope of your question.
Bookmarks