views:

226

answers:

2

I have several divs with content. Some of the context is wrapped with,

content <a name='SomeName'> cool content </a> more content

In Javascript how do I force the SomeName name to scroll into view for that DIV only. The catch is that there are many DIVs on the page with content.

I have the Div's object known. The Div can contain other divs etc in a heirarchy. Somewhere in there is the SomeName anchor.

site: http://BiblePro.BibleOcean.com

+2  A: 

You could set the Window Location to include the # anchor, and the browser will scroll to it.

Window.Location = "http://yourSite.com/YourPage.html#SomeName";
Dead account
+1  A: 

what about scrollintoview command? Not sure if thats IE specific.

document.getElementById("SomeName").scrollIntoView(true);

tweedie