I have a div "content" with anchor id="one" inside of it.
Right now, I am using an onClick event from an exterior link to scroll "content" by a pixel distance to bring "one" into view without making the rest of the page jump and it works nice and smooth as planned...
onClick="document.getElementById('content').scrollTop = 400;
but I would rather calculate the exact offsetTop distance of "one" and scroll by that distance instead of my arbitrary numbers.
This is what I am trying:
<script type="text/javascript">
<!--
var topPos = document.getElementById('one').offsetTop;
//-->
</script>
and
onClick="document.getElementById('content').scrollTop = topPos;
with
<a id="one"></a> being how I ID the element within the content.
But topPos returns null! I can't seem to get past this. I don't know if it's my poor javascript skills (probably) or the fact that my css isn't providing any numbers. I am not using fixed positioning, if this matters. Can anyone tell me my glaring error? Thanks in advance.