<a href="#" onclick="alert('test');">...</a>
The page will scroll to the top since the link is nowhere found in that page. To disable the scroll, simply add return false like this:
<a href="#" onclick="alert('test'); return false;">...</a>
or
<a href="" onclick="alert('test'); return false;">...</a>
That's all. :)