1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00
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>