Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this input element:

<input type="text" class="textfield" value="" id="subject" name="subject">

Then I have some other elements, like other text inputs, textareas, etc.

When the user clicks on that input #subject, the page should scroll to the last element of the page with a nice animation. It should be a scroll to bottom and not to top.

The last item of the page is a submit button:

<input type="submit" class="submit" id="submit" name="submit" value="Ok, Done.">

The animation should not be too much fast and should be fluid.

I am running the latest jQuery version. I prefer to not install any plugin but to use the default jQuery features to achieve this.

share|improve this question

3 Answers

up vote 420 down vote accepted

Assuming you have a button with the id 'button', try this example:

$("#button").click(function() {
     $('html, body').animate({
         scrollTop: $("#elementtoScrollToID").offset().top
     }, 2000);
 });

I got the code from the article Smoothly scroll to an element without a jQuery plugin. And have tested it on the example below.

    <html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
    $(document).ready(function (){
        $("#click").click(function (){
            //$(this).animate(function(){
                $('html, body').animate({
                    scrollTop: $("#div1").offset().top
                     }, 2000);
            //});
        });
    });
</script>
<div id="div1" style="height: 1000px; width 100px">
test
</div>
<br/>
<div id="div2" style="height: 1000px; width 100px">
test 2
</div>
<button id="click">click me</button>
</html>
share|improve this answer
2  
I have tested it and it does work, Let me know if you need more detail or an example I can send you one. – Steve Jul 13 '11 at 10:12
1  
)}; should be }); at end of first function. I can't edit it... :/ – james6848 Feb 1 '12 at 12:30
3  
This will not work in all cases. See stackoverflow.com/questions/2905867/… – Janis Apr 25 '12 at 14:43
1  
That's great, worked a treat - cheers :) – martinjbates Jul 5 '12 at 10:40
2  
You da man! ~~~~~~~~~~~~ – MyName Nov 22 '12 at 15:49
show 5 more comments

jQuery .scrollTo() Method

jQuery .scrollTo(): View - Demo, API, Source

I wrote this lightweight plugin to make page/element scrolling much easier. It's flexible where you could pass in a target element or specified value. Perhaps this could be part of jQuery's next official release, what do you think?


Examples Usage:

$('body').scrollTo('#target'); // Scroll Screen to Target Element

$('body').scrollTo(500); // Scroll Screen 500px Down

$('#scrollable').scrollTo(100); // Scroll Individual Element 100px Down

Options:

scrollTarget : A element, string, or number which indicates desired scroll position.

offsetTop : A number that defines additional spacing above scroll target.

duration : A string or number determining how long the animation will run.

easing : A string indicating which easing function to use for the transition.

complete : A function to call once the animation is complete.

share|improve this answer
4  
Well formatted answer. I like! – Mārtiņš Briedis Nov 8 '12 at 10:47
3  
The demo does not work on chrome – alex Feb 2 at 22:15
It was working until a recent update on chrome. I have a version that works that I'm currently using on memoryboxweddings.com/photography-posts (if you want to try it out). I'll post an update once it's fixed. – Timothy Perez Feb 5 at 13:56
Fixed, turns out it was actually a JS file from jquery.com that was killing it. Should work now if you try it. – Timothy Perez Feb 14 at 19:45
I'm using this plugin and it works great. Thanks! Does the plugin have a license associated with it? – ravishi Mar 22 at 1:07
show 6 more comments

Check out ScrollTo plugin , you can see the demo here

Hope it helps

share|improve this answer
1  
I think it's worth noting that TimothyPerez's plugin is restricted to the y axis, while Ariel Flesler's (linked in this answer) is more of a kitchen sink supporting both x and y scroll, which can be important to consider for example when a modal dialog appears on mobile, or drawing attention to a specific part of a wide table or form on mobile. – Chris Moschini Mar 27 at 3:48

protected by Community Aug 21 '12 at 15:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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