I have a hyper link as such <a href="#" id="someID">Link</a> that i have to scroll down the page to get to.  This hyperlink is only there to trigger an Ajax request.  When ever i click this hyperlink the page scrolls all the way to the top!  How can i fix this?  I use # because anything else would reload the page.  Am I using it wrong?
EDIT:
Its kind of hard for me to explain what am doing so if you run this you get the same problem that i am facing. Even after returning false.
   <html>
    <head>
    </head>
    <body>
        <a href="#" id="link" style="position:absolute; top:200%;">Link</a>
    </body>
</html>
<script type="text/javascript">
    document.getElementById("link").onmousedown = function(){
        this.style.color="red";
        return false;
    }
</script>
 
     
     
     
     
     
    