jQuery Scroll x pixels from top of the page when clicking a link

user1715848 picture user1715848 · Oct 4, 2012 · Viewed 21.3k times · Source

I have a link which changes its vertical position on scrolling. I want to go to a certain postion (smoothly) on my page when I click this link, which is located exactly 1080px from the top of the page.

I can't get it work, hope someone can help me out.

The link:

<img src="img/clickme.png" style="cursor: pointer;" class="scroll"/>

The script:

<script type="text/javascript">
$(document).ready(function() {
$(".scroll").click(function(event){     
$('html, body').animate({scrollTo({ top: '+1080px',}, 800);
});
});
</script>

Answer

Blender picture Blender · Oct 4, 2012

Try this instead. Your syntax was off a little:

$(document).ready(function() {
    $(".scroll").click(function(event){
        $('html, body').animate({scrollTop: '+=1080px'}, 800);
    });
});

Demo: http://jsfiddle.net/m4Aaz/2/