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();
});