1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
wiki.mbirth.de/_includes/table_freeze_first.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>