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 using if (e.keyCode == 40) to trigger a scrollTo function, but for some reason in chrome its seems to jump up before scrolling, which is really buggy.

I made a jfiddle of my problem ( this only happens on chrome, works fine with firefox.

Make sure to click on the result tab before hitting your down arrow and you will see it jump up and then scroll, same with the up key once on the second slide.

http://jsfiddle.net/vEpS3/9/

If any of you know a way to fix this I would greatly appreciate it! thanks

share|improve this question

1 Answer

up vote 3 down vote accepted

You need a

e.preventDefault();

before the scrollTo http://jsfiddle.net/whucg/

share|improve this answer
perfect, thanks a ton – Maxim Siebert Dec 16 '12 at 1:05

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.