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