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