I'm trying to scroll down 100px every time the user gets near the top of the document.

I have the function executing when the user gets close to the top of the document, but the .scrollTo function isn't working.

I put an alert after and before to check to see if it actually was the line or not that was stopping it and only the first alert goes off, here's the code:

alert("starting");
$.scrollTo({ top: '+=100px', left: '+=0px' }, 800);
alert("finished");

I know I have the jquery page linked properly because I'm using many other jquery functions throughout and they all work fine. I've also tried removing the 'px' from above and it doesn't seem to make a difference.

link|improve this question
1  
Don't you have a JavaScript debugger? – Matthew Flaschen May 7 '09 at 4:17
2  
Jquery itself my be working fine, but are you sure you have the scrollTo plugin linked properly? Change one of those alerts to alert($.scrollTo); – Andrew May 7 '09 at 5:03
feedback

5 Answers

up vote 31 down vote accepted

If it's not working why don't you try using jQuery's scrollTop method?

$("#id").scrollTop($("#id").scrollTop() + 100);

If you're looking to scroll smoothly you could use basic javascript setTimeout/setInterval function to make it scroll in increments of 1px over a set length of time.

link|improve this answer
ScrollTop works much more smoothly in IE as well. – Jeff Davis Mar 2 '11 at 1:20
feedback
$('html, body').animate({scrollTop: $("#page").offset().top}, 2000);
link|improve this answer
2  
+1 for this, very smooth. – shmeeps Jul 8 '11 at 16:51
Pretty awesome - thanks! – losfinkos Aug 24 '11 at 11:15
2  
I've often wondered why people use 'html, body' for scrollTop instead of just 'html'. Any thoughts on this? – Scott Greenfield Oct 27 '11 at 22:43
+1 worked for me ;) I also am interested to know why html, body instead of just html? – Kato Nov 9 '11 at 23:29
2  
@ScottGreenfield, @Kato: not sure why, but this comment says not including body breaks this on Chrome 4: stackoverflow.com/questions/1890995/… – Yuji Tomita Dec 20 '11 at 8:13
show 4 more comments
feedback

jQuery now supports scrollTop as an animation variable.

$("#id").animate({"scrollTop": $("#id").scrollTop() + 100});

You no longer need to setTimeout/setInterval to scroll smoothly.

link|improve this answer
Got some syntax errors - missing your closing {. Otherwise this is a good point. – Joshua Sep 28 '10 at 18:47
Should it be $("#id").offset().top instead? – codeulike Oct 5 '11 at 15:54
feedback

Looks like you've got the syntax slightly wrong... I'm assuming based on your code that you're trying to scroll down 100px in 800ms, if so then this works (using scrollTo 1.4.1):

$.scrollTo('+=100px', 800, { axis:'y' });
link|improve this answer
feedback

Actually something like

function scrollTo(prop){
    $('html,body').animate({scrollTop: $("#"+prop).offset().top +
 parseInt($("#"+prop).css('padding-top'),10) },'slow');
}

will work nicely and support padding. You can also support margins easily - for completion see below

function scrollTo(prop){
    $('html,body').animate({scrollTop: $("#"+prop).offset().top 
+ parseInt($("#"+prop).css('padding-top'),10) 
+ parseInt($("#"+prop).css('margin-top'),10) +},'slow');
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown