|
-
Sep 20th, 2002, 09:19 AM
#1
Thread Starter
Addicted Member
tables
In IE 5+, a <table> is never displayed before the complete table is loaded in the browser. Is there a way to avoid this? e.g. to display the first 100 rows when they are received by the browser
-
Sep 20th, 2002, 05:14 PM
#2
Frenzied Member
Try using <tbody>:
Code:
<table>
<tbody>
<tr><td>First 100 rows</td></tr>
</tbody>
<tbody>
<tr><td>Next 100 rows</td></tr>
</tbody>
</table>
You should really use it to group related material, so try and do that if you can. You can also use <thead> for placing content at the start of the table, and <tfoot> for that the bottom. thead and tfoot both must be before tbody.
-
Sep 21st, 2002, 09:01 PM
#3
Junior Member
Another way is to divide the table. Like this:
<table>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
</table><table>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
</table><table>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
<tr><td>..</td></tr>
</table>
Putting a table before other with no space or tags beetwen them makes the IE generate one big table instead a lot o little ones.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|