Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a navigation in the top right corner that will scroll down a page with a user. I am using this jQuery code:

var $scrollingDiv = $("#scrollingDiv");
    $(window).scroll(function(){            
        $scrollingDiv
            .stop()
            .animate({"marginTop": ($(window).scrollTop() + 30) + "px"}, "fast" );  

    });

the CSS:

#scrollingDiv{background-color:#fff;margin-left:4%;margin-top:10px;padding:0 2% 2%;}

It works great, the Problem is: The navigation filters the content, so you can be at the bottom of the page, click on a link in the navigation and it will filter the content so there will only be 2 paragraphs instead of 20. The scrolling navigation will get STUCK on the bottom in IE. Other browsers it moves back to the top.

I tried using a

<a name="top"> </a>

But that didnt work. Any suggestions?

share|improve this question

1 Answer

here is what you do:

$("a.nav").click(function () {
    $("#scrollingDiv").css({marginTop: '10px'}); 
    });

This will reset the marginTop so it won't get stuck on the bottom

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.