This is quite tricky. I have a table that is wider than the page, so the user has to scroll horizontally to see certain columns. But then they lose sight of the left-most (header) column.
I'm not in charge of the table structures (quite bizarre setup IMO), but it's like this:
<table>
<tr>
<td>[THE HEADER COLUMN (as a separate table)]</td>
<td>[THE TABLE BODY (as a separate table)]</td>
</tr>
</table>
So I need to display the 'header column table' on the edge of the screen when the user has scrolled this out of view, and mouses over to the edge of the screen.
I was thinking that cloning the header table then displaying it temporarily was the way to go about this (can't move the original, as page width would change). This seems like a bit of a messy solution (especially since the original column header table has IDs associated with it).
Do you think this is the right approach? Any ideas?
I don't need help with any of the jQuery event handling, and I can't use a scrollable table instead of this approach.