Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I am using a html table to display the records and I want to freeze the header and the first column of my table and I tried with some plugins where it works well with Ie and not with chrome
Is there any plug in which works both in IE and chrome as well?
Posted
Comments
Thanks7872 3-May-13 4:46am    
I think you need table header fixed when scrolling through large tables right?

Change ur Style like fixed
XML
<table>
<tr>
<td style="position: fixed;">fgnhfnfvn</td>
<td>fhfh</td>

</tr>
<tr>
<td style="position: fixed;">fnfnf</td>
<td>ghngn</td>

</tr>
</table>
 
Share this answer
 
Use css property for headers as position:absolute;
 
Share this answer
 
may these links can help u out....

link1

link2
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900