Reputation: 565
Hello is it possible to hide url links in the address bar. I'm building a single page website and All I want to see is my domain name.
HTML
<a href="#Home">Home</a>
<a href="#About">About</a>
<div id="Home">This is my home page</div>
<div id="About">This is my About page</div>
Say When I click on Home link then my url will become.
www.mydomain.com/#Home
How Can I not show show #Home url and only www.mydomain.com would show?
Upvotes: 2
Views: 10829
Reputation: 35572
Make all links load their content using AJAX and replace the content of the current page.
but #
in url is helpful for search engin to observe for indexing, to load the relevant contenct, if bookmarked
Upvotes: 3