I am currently using jQuery to load a page at a specific hashtag (via onload
function in the body class) when a user clicks on a post title. The hashtag obviously shows up in the url. I was wondering if there was a way to hide the hashtag from cluttering up the URL. Did some searches and did not come up with much.
function goToAnchor() {
location.href = "#post";
}