vote up 0 vote down star

Why does the browser not scroll to the anchor?
url:http://localhost:8080/index.html#myAnchor3

this.anchor1.setName("myAnchor1");
this.add(this.anchor1);
this.anchor2.setName("myAnchor2");
this.add(this.anchor2);
this.anchor3.setName("myAnchor3");
this.add(this.anchor3);

Is it because the anchor is created after the page has finished loading, so the browser doesn't see the anchor when it tries to scroll to it?

flag

3 Answers

vote up 1 vote down

Try this:

this.anchor.setName("myAnchor");
this.add(this.anchor);
location.hash = '#myAnchor';

And yes, you are right, your anchor was created/inserted after the page load, so well.....

link|flag
where is location.hash in scope? location is in scope, but it only has accessor methods, no direct access or setter methods. – antony.trupe Oct 19 at 0:52
@antony: Are you saying it doesn;t work for you. It does for me. In full, it is "window.location.hash" (see developer.mozilla.org/en/DOM/… and msdn.microsoft.com/en-us/library/…). It can be read/assigned. – o.k.w Oct 19 at 2:22
ah, you jumped down to javascript. – antony.trupe Oct 19 at 3:37
@anthony: ermm, everything you coded is javascript, ain't it? If you want the hash to be dynamic based on the one supplied in the URL, then set "location.hash = location.hash;" after you created the anchors. – o.k.w Oct 19 at 4:59
my example code is all java – antony.trupe Oct 19 at 19:58
show 1 more comment
vote up 1 vote down

You could try using Element.scrollIntoView(), which not only will scroll the window, but any scrollable container in the DOM hierarchy that holds the element.

link|flag
looks promising, I'll try it tonight. – antony.trupe Oct 19 at 19:59
haven't gotten this to work yet, but not convinced I'm not doing something wrong yet. – antony.trupe Oct 21 at 2:27
I was trying to scroll to an element that wasn't added to the DOM yet. Restructuring some code... – antony.trupe Dec 1 at 4:13
vote up 0 vote down check

Had to override the onLoad method, and call scrollIntoView there, otherwise it was trying to scroll to an object that wasn't added to the DOM yet.

public class Foo extends Widget
{
  Foo(){
  }

  @Override
  protected void onLoad(){
    super.onLoad();
    getElement().scrollIntoView();
  }
}
link|flag

Your Answer

Get an OpenID
or

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