mirror of
https://github.com/mbirth/wiki.git
synced 2024-11-09 13:16:45 +00:00
9 lines
331 B
HTML
9 lines
331 B
HTML
|
<script type="text/javascript">
|
||
|
// https://stackoverflow.com/questions/45071085/freeze-first-row-and-first-column-of-table
|
||
|
$(document).ready(function() {
|
||
|
$('.freeze-first-col tbody').scroll(function(e) {
|
||
|
$(this).find('td:nth-child(1)').css("left", $(this).scrollLeft()-5);
|
||
|
});
|
||
|
});
|
||
|
</script>
|