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();
$('#link').css('position', 'fixed').focus().css('position', 'static') works in Firefox.
$('#link').css('position', 'fixed').focus().css('position', 'static')
(Edit: You should not use this hack)