JavaScript to scroll long page to DIV - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T10:15:49Zhttp://stackoverflow.com/feeds/question/68165http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div0JavaScript to scroll long page to DIVAngus McCoteup2008-09-16T00:15:24Z2008-09-16T12:31:09Z
<p>I have a link on a long HTML page. When I click it, I wish a DIV on another part of the page to be visible in the window by scrolling into view.</p>
<p>A bit like EnsureVisible in other languages.</p>
<p>I've checked out scrollTop and scrollTo but they seem like red herrings.</p>
<p>Can anyone help?</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68168#681682Answer by Bloodhound for JavaScript to scroll long page to DIVBloodhound2008-09-16T00:15:57Z2008-09-16T00:15:57Z<p>Why not a named anchor?</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68175#681756Answer by abigblackman for JavaScript to scroll long page to DIVabigblackman2008-09-16T00:17:07Z2008-09-16T00:17:07Z<pre><code><a href="#myAnchorALongWayDownThePage">Click here to scroll</a>
<A name='myAnchorALongWayDownThePage"></a>
</code></pre>
<p>No fancy scrolling but it should take you there.</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68177#681774Answer by Chuck for JavaScript to scroll long page to DIVChuck2008-09-16T00:17:18Z2008-09-16T00:17:18Z<p>Answer posted <a href="http://stackoverflow.com/questions/66964/how-do-i-create-a-link-to-a-footnote-in-html">here</a> - same solution to your problem.</p>
<p>Edit: the JQuery answer is very nice if you want a smooth scroll - I hadn't seen that in action before.</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68185#681854Answer by George Mauer for JavaScript to scroll long page to DIVGeorge Mauer2008-09-16T00:18:31Z2008-09-16T00:18:31Z<p>How about the <a href="http://demos.flesler.com/jquery/scrollTo/" rel="nofollow">JQuery ScrollTo - see this sample code</a></p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68188#681881Answer by Scott S. for JavaScript to scroll long page to DIVScott S.2008-09-16T00:19:04Z2008-09-16T00:19:04Z<p>The property you need is location.hash. For example:<br /><br/>
location.hash = 'top'; //would jump to named anchor "top</p>
<p>I don't know how to do the nice scroll animation without the use of dojo or some toolkit like that, but if you just need it to jump to an anchor, location.hash should do it.</p>
<p>(tested on FF3 and Safari 3.1.2)</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68197#681970Answer by toast for JavaScript to scroll long page to DIVtoast2008-09-16T00:20:15Z2008-09-16T00:20:15Z<p>scrollTop (IIRC) is where in the document the top of the page is scrolled to. scrollTo scrolls the page so that the top of the page is where you specify.</p>
<p>What you need here is some Javascript manipulated styles. Say if you wanted the div off-screen and scroll in from the right you would set the left attribute of the div to the width of the page and then decrease it by a set amount every few seconds until it is where you want.</p>
<p>This should point you in the right direction.</p>
<p>Additional: I'm sorry, I thought you wanted a separate div to 'pop out' from somewhere (sort of like this site does sometimes), and not move the entire page to a section. Proper use of anchors would achieve that effect.</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/68671#686711Answer by levik for JavaScript to scroll long page to DIVlevik2008-09-16T01:51:02Z2008-09-16T01:51:02Z<p>The difficulty with scrolling is that you may not only need to scroll the page to show a div, but you may need to scroll inside scrollable divs on any number of levels as well.</p>
<p>The scrollTop property is a available on any DOM element, including the document body. By setting it, you can control how far down something is scrolled. You can also use clientHeight and scrollHeight properties to see how much scrolling is needed (scrolling is possible when clientHeight (viewport) is less than scrollHeight (the height of the content).</p>
<p>You can also use the offsetTop property to figure out where in the container an element is located.</p>
<p>To build a truly general purpose "scroll into view" routine from scratch, you would need to start at the node you want to expose, make sure it's in the visible portion of it's parent, then repeat the same for the parent, etc, all the way until you reach the top.</p>
<p>One step of this would look something like this (untested code, not checking edge cases):</p>
<pre><code>function scrollIntoView(node) {
var parent = node.parent;
var parentCHeight = parent.clientHeight;
var parentSHeight = parent.scrollHeight;
if (parentSHeight > parentCHeight) {
var nodeHeight = node.clientHeight;
var nodeOffset = node.offsetTop;
var scrollOffset = nodeOffset + (nodeHeight / 2) - (parentCHeight / 2);
parent.scrollTop = scrollOffset;
}
if (parent.parent) {
scrollIntoView(parent);
}
}
</code></pre>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/69042#690420Answer by Josh for JavaScript to scroll long page to DIVJosh2008-09-16T02:58:08Z2008-09-16T02:58:08Z<p>If you don't want to add an extra extension the following code should work with jQuery.</p>
<pre><code>$('a[href=#target]').
click(function(){
var target = $('a[name=target]');
if (target.length)
{
var top = target.offset().top;
$('html,body').animate({scrollTop: top}, 1000);
return false;
}
});
</code></pre>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/69803#698030Answer by Vitaly Sharovatov for JavaScript to scroll long page to DIVVitaly Sharovatov2008-09-16T06:27:25Z2008-09-16T06:27:25Z<p>Correct me if I'm wrong but I'm reading the question again and again and still think that Angus McCoteup was asking how to set an element to be position: fixed. </p>
<p>Angus McCoteup, check out <a href="http://www.cssplay.co.uk/layouts/fixed.html" rel="nofollow">http://www.cssplay.co.uk/layouts/fixed.html</a> - if you want your DIV to behave like a menu there, have a look at a CSS there</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/71726#717261Answer by Andrey Fedorov for JavaScript to scroll long page to DIVAndrey Fedorov2008-09-16T12:31:09Z2008-09-16T12:31:09Z<p>There is a <a href="http://demos.flesler.com/jquery/scrollTo/" rel="nofollow">jQuery plugin</a> for the general case of scrolling to a DOM element, but if performance is an issue (and when is it not?), I would suggest doing it manually. This involves two steps:</p>
<ol>
<li>Finding the position of the element you are scrolling to.</li>
<li>Scrolling to that position.</li>
</ol>
<p><a href="http://www.quirksmode.org/js/findpos.html" rel="nofollow">quirksmode</a> gives a good explanation of the mechanism behind the former. Here's my preferred solution:</p>
<pre><code>function absoluteOffset(elem) {
return elem.offsetParent && elem.offsetTop + absoluteOffset(elem.offsetParent);
}
</code></pre>
<p>It uses casting from null to 0, which isn't proper etiquette in some circles, but I like it :) The second part uses <code>window.scroll</code>. So the rest of the solution is:</p>
<pre><code>function scrollToElement(elem) {
window.scroll(absoluteOffset(elem));
}
</code></pre>
<p>Voila!</p>