Files
Roman Pyrih 7483681901 first commit
2026-04-21 15:48:41 +02:00

5 lines
156 B
JavaScript

jQuery(document).ready(function ($) {
$(window).on('scroll', function () {
$('header').toggleClass('fixed-header', $(this).scrollTop() > 0);
});
});