Skip to content

Instantly share code, notes, and snippets.

@completejavascript
Created February 23, 2018 16:16
Show Gist options
  • Save completejavascript/ede0bfeff581a878b7064c739a93750b to your computer and use it in GitHub Desktop.
Save completejavascript/ede0bfeff581a878b7064c739a93750b to your computer and use it in GitHub Desktop.
Set hash location for url address
// Set hash location for url address
function setHashLocation(id) {
var scrollmem = $('html,body').scrollTop();
window.location.hash = id;
$('html,body').scrollTop(scrollmem);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment