I\'m using this jquery http://css-tricks.com/examples/SmoothPageScroll/ to create a smooth page scroll, however each time I click a scrollable element, the anchor ID appears on
To not show hash ( a browser default behavior), return false from click handler.
$('a').click(function(){ // run code return false; })
or
$('a').click(function(event){ event.preventDefault() // run code })
These also prevent browser from loading a url from href, among other things they prevent