Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Paul Roberts
7,928 PointsStop Links Adding to URL
Hey there,
Here is my JSFiddle:
The problem is when you click the menu links, they add "#one", "#two", '#three" and "#four" to the end of the URL.
How do I prevent this?
Edit: For a single page website!
1 Answer

Jeff Lemay
14,267 PointsEasy way to remove hash from end of url:
history.pushState("", document.title, window.location.pathname);
Paul Roberts
7,928 PointsPaul Roberts
7,928 PointsHey, thanks for the reply :)
I've tried this but it doesn't work.
I'm designing a single page website, so it needs to work every time someone clicks an INTERNAL link to further down the page.
Jeff Lemay
14,267 PointsJeff Lemay
14,267 PointsInstead of linking to IDs of each section on the page, could you use jquery to handle this (would also give you a nice scroll animation)? Check out links here and here for examples.
The basic idea is: