vote up 0 vote down star

How do I detect if a user scrolls downwards with jQuery? I want a fixed div to show only when the browser is within 300px of the top. When the user scrolls down past the 300px mark, it should disappear. When the user scrolls back to the top, it should hide. How do I do this?

flag

Put it not more than 300px from the top of the page. You won't even need jQuery :-) – edeverett Aug 30 at 21:28
I want it fixed to the browser, so when you scroll down, it will look cool :D – Brandon Wang Aug 30 at 21:42

4 Answers

vote up 1 vote down check

Attach a scroll listener to the window: http://docs.jquery.com/Events/scroll

Then check the scrollTop of window: http://docs.jquery.com/CSS

When scrollTop is less than 300, show() the div, otherwise hide() it.

link|flag
vote up 0 vote down

Just check the window scrollTop position on the scroll event, and compare it with the element offsetTop position:

$(window).scroll(function(e){ 
  $el = $('.myElement'); 
  if ($(this).scrollTop() > $el.offset().top){ 
    $el.hide(); 
  } else { 
    $el.show();
});

Run this example here.

link|flag
vote up 0 vote down

scrollTop and scrollY look like they will get you started in IE and Firefox. Not sure about other browsers.

link|flag
vote up 1 vote down
var docElem = $(document.documentElement)
docElem.scroll(function(e) {
    if(docElem.scrollTop() < 300) {
        whatever.show();
    } else {
        whatever.hide();
    }
});

You may have to use a different element (as docElem) in different browsers, but this should work in Firefox. (I haven't tested it)

EDIT: More jQuery

link|flag
I used some of your code, thanks! – Brandon Wang Aug 30 at 21:42
Then why didn't you mark it accepted? – SLaks Aug 30 at 21:43

Your Answer

Get an OpenID
or

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