it'll cause the page to jump to the top in most browsers.
There are a couple of ways to deal with this...
Button
One way is to use a button (not a button link) you could style those to look like just text for example. The problem there though is you can't right click on those to open in a new tab, but it is one the best ways
#no-link
Those # links are meant to be anchors but you can stop the default jump to the top by adding #no-link that does add a history to your link though, if you look in the browser address you'll see those. Any #name would work for that a common one is #0 since ID's can't use a zero
jQuery
Another option is to use a line of jQuery in your page FOOTER (foundation use jQuery)
With a class
This solution will stop the jump to the top and not add the hashtag link to your history on all of the page anchors with the class nolink
$('a.nolink').click(function(e) {e.preventDefault(); });
</script>
On all # anchors
This solution will stop the jump to the top and not add the hashtag link to your history on all of the page anchors
$('a[href="#"]').click(function(e) {e.preventDefault(); });
</script>
Smooth Scrolling
Now when you do use a page anchor you probably don't like how it automatically jumps to that ID you can make those scroll slower
If you use foundation you can use the built in Smooth Scroll
That also has the prevent default script built into it so it stops the history on the link
If you use the original coffeegrinder grid or prefer more control I also have a script you can add jQuery Page Scroll