Thank you,
Here is a link of page My link
var windowWidth = $(window).width();
function scrollSidebar() {
if ($('.no-scroll').css('float') != 'none') {
var headerHeight = $('.header').outerHeight();
var sidebar = $('.sidebar-wrap');
var sidebarOffset = $('.sidebar-wrap').offset().top;
var sidebarTopPadding = 125;
$(window).scroll(function() {
if ($(window).scrollTop() > headerHeight ) {
sidebar.stop().animate({
marginTop: $(window).scrollTop() - 60
}, 200);
}
else {
sidebar.stop().animate({
marginTop: 0
}, 200);
}
});
}
}
scrollSidebar();
$(window).resize(function() {
if ($('.no-scroll').css('float') == 'none') {
scrollSidebar();
if (window.RT) clearTimeout(window.RT);
window.RT = setTimeout(function()
{
this.location.reload(false);
}, 200);
}
});

New Topic/Question
Reply


MultiQuote


|