![html](https://habrastorage.org/r/w120/webt/5a/6c/29/5a6c29308ac8a661581550.png)
HTML
- 43 ответа
- 0 вопросов
22
Вклад в тег
jQuery(function($) {
function fixDiv() {
var $cache = $('#fixed');
if ($(window).scrollTop() > 50)
$cache.css({
'position': 'fixed',
'top': '0px'
});
else
$cache.css({
'position': 'relative',
});
}
$(window).scroll(fixDiv);
fixDiv();
});