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'm just trying to scroll to a specific DOM element or absolute position in my browser window, and it's not working. Here's my code:

$(window)._scrollable();
$('#scene_01_down').click(function(){
  $(window).scrollTo(2000,1000);
});

and here's the documentation for the plugin:

http://flesler.blogspot.com/2007/10/jqueryscrollto.html

share|improve this question

1 Answer

up vote 9 down vote accepted

Do you really need that plugin?

$("html,body").animate({
    scrollTop: 2000,
    scrollLeft: 1000
});

To scroll to a particular element:

var offset = $("#someElement").offset();
$("html,body").animate({
    scrollTop: offset.top,
    scrollLeft: offset.left
});

Demo.

share|improve this answer
Sorry, I didn't mean to repeat with mine - plus, I like your version better :) – Zachary Kniebel Aug 31 '12 at 14:55
I hate it when people don't answer the question. But this did a good job & I've always hated that plugin :) – Kevin Nov 19 '12 at 8:13

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.