You could use JavaScript's scrollIntoView() function within the toggler link to get the page to scroll to the content being animated when clicked on. For example:
Code:
<a href="javascript:animatedcollapse.show('jason'); document.getElementById('jason').scrollIntoView()">Slide Down</a>
<p>sdfsf</p><p>sdfsf</p><p>sdfsf</p><p>sdfsf</p><p>sdfsf</p><p>sdfsf</p><p>sdfsf</p><p>sdfsf</p>
<div id="jason" style="width: 300px; background: #FFFFCC; display:none">
<b>Content inside DIV!</b><br />
<b>Note: Fade effect enabled. Height programmically defined. DIV hidden using inline CSS.</b><br />
</div>
Bookmarks