vote up 2 vote down star
1

Hi gurus,

I have a div into which I am loading data dynamically by ajax, jquery. like

$('#wp').load('http://someurl.com/getit',p,function(str){} );

Now because I am having page full of data before that div I need to move the browser window down to that div's location after it is loaded with slow motion like the similar effects in stackoverflow. Please help me.Thanks in advance.

flag

75% accept rate

1 Answer

vote up 3 vote down check

try this plugin: http://flesler.blogspot.com/2007/10/jqueryscrollto.html

After you've loaded your content into the DIV, call

$.scrollTo("#your-div-id-here", {duration: 1000 });

duration is in milliseconds for the scroll animation.

link|flag
Thanks for that. I am really able to use that with hell lot of ease. Thanks again – Coder Oct 13 at 7:32

Your Answer

Get an OpenID
or

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