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.

How can I focus to a HTML element (ex. "a") and do not change the current scroll settings.

For ex. if I use:

$('#link').focus();

and this link is not visible in the screen (ex. is bellow the visible area) the browser scrolls down to show the element. How can I set the focus without scrollbar movement? I need to stay the scrollbar in the original place.

I have tried this, but it produces some screen flickering, and it is a hack, not an elegant solution:

var st=$(document).scrollTop();
$('#link').focus();
$(document).scrollTop(st);

Can somebody help me, please?

share|improve this question
Why would you want the focused control to not be visible? Perhaps there is another way to achieve the functionality you are looking for. – JoeyRobichaud Feb 4 '11 at 13:03
I am trying to make an image gallery. There are mini thumbnail images (which are the #link-s). I want bind a next and prev key event handler on that mini images which automaticaly shows the big image in an other part of the screen. And I don't want the browser go to the mini image, just to stay in the place that the big image shoul be visible. If I not change the focus I cannot bind the key events from the mini images... So it's complicated... – buzoganylaszlo Feb 4 '11 at 13:23

3 Answers

Try this:

$.fn.focusWithoutScrolling = function(){
  var x = window.scrollX, y = window.scrollY;
  this.focus();
  window.scrollTo(x, y);
};

and then

$('#link').focusWithoutScrolling();
share|improve this answer
This works like a charm – Bas Koopmans Oct 8 '12 at 11:15
Great idea, loved it – Yossi S Oct 17 '12 at 10:31

The reason why this is so hard for you is because you aren't supposed to do it. The browsers are designed to help the user avoid websites that do stuff like this, because a link the has focus will activate by hitting return or space on the keyboard, and users rarely wish to follow a link they are not aware is there.

Try to work with the browser instead of against it, and you will usually end up with happier users.

share|improve this answer
You could get around that by .focus on the element and immediately .blur() it – PHearst Apr 25 at 7:53

$('#link').css('position', 'fixed').focus().css('position', 'static') works in Firefox.

share|improve this answer
Thanks, it really works in Firefox but not in other browsers... – buzoganylaszlo Feb 4 '11 at 13:17
Chrome seems to insist on scrolling to the focused element's position as soon as its CSS position property is set back to static or relative. I got a test that works if you wrap your target in a relatively positionned <div>, the target getting an absolute position. I don't know how that would work in your particular case. – jd. Feb 4 '11 at 13:43

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.