Javascript Scroll To Element On Binded Keydown Events In Jquery
I am trying to scroll to 2 different elements in a keydown event, 1st element on the first press, 2nd element on second press, and repeat the event after every 2 presses (or hits).
Solution 1:
See the definitions of offset
Get the current coordinates of the first element in the set of matched elements, relative to the document.
the problem here is when you animated the #wrap element, its offset changes the easiest solution is to get its position beforehand, see my edited JSfiddle. Add the following two lines of code, and do the animation according to spot1/spot2. The switch case executes fine.
var spot1 = $("#scrollToHere2").position().top;
var spot2 = $("#scrollToHere").position().top;
Post a Comment for "Javascript Scroll To Element On Binded Keydown Events In Jquery"