vote up 5 vote down star
4

Consider the following code:

<a href="#label2">GoTo Label2</a>
... [content here] ...
<a name="label0"></a>More content
<a name="label1"></a>More content
<a name="label2"></a>More content
<a name="label3"></a>More content
<a name="label4"></a>More content

Is there a way to emulate clicking on the "GoTo Label2" link to scroll to the appropriate region on the page through code?

EDIT: An acceptable alternative would be to scroll to an element with a unique-id, which already exists on my page. I would be adding the anchor tags if this is a viable solution.

flag

78% accept rate

8 Answers

vote up 11 vote down check

This JS has generally worked well for me if you also put an ID on the element:

document.getElementById('MyID').scrollIntoView(true);

This is good as it will also position scrollable divs etc so that the content is visible.

Mike.

link|flag
thanks mike this is actually exactly what I was looking for! – Anders Nov 5 '08 at 17:34
vote up 4 vote down

Using javascript:

window.location.href = '#label2';

If you need to do it from the server/code behind, you can just emit this Javascript and register it as a startup script for that page.

link|flag
vote up 2 vote down

I suppose this will work:

window.location="<yourCurrentUri>#label2";
link|flag
vote up 1 vote down

you can just open the new URL with the name appended, for instance http://www.mysite.com/mypage.htm#label2

In Javascript,

location.href = location.href + '#label2';

link|flag
Wouldn't this break if you execute it more than once? mysite.com/mypage.htm#label2#label2 – EndangeredMassa Nov 5 '08 at 17:09
vote up 0 vote down

You can use "window.location.hash" to access the hash (#) portion directly.

window.location.hash = "#myAnchor"

I'm not sure if you need the "#" prefix or not, in this scenario.

link|flag
vote up 0 vote down

If the element is an anchor tag, you should be able to do:

document.getElementByName('label2').focus();
link|flag
vote up 0 vote down

no "#" when you use window.location.hash

link|flag
vote up -1 vote down

document.getElementById('name').scrollIntoView(true) doesn't work with firefox

link|flag
I beg to differ, just tested it and it works fine. Check your javascript/security settings. – Anders Aug 5 at 17:34

Your Answer

Get an OpenID
or

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