Skip to content

Instantly share code, notes, and snippets.

@liquorice
Last active January 3, 2016 02:19
Show Gist options
  • Save liquorice/8394584 to your computer and use it in GitHub Desktop.
Save liquorice/8394584 to your computer and use it in GitHub Desktop.
set document.location.href without causing the viewport to scroll
var set_document_hash = function(hash) {
var id = hash,
temp_id = "TEMP-" + hash,
target = $("#" + id);
if (target.length) target.attr("id", temp_id);
document.location.hash = hash;
if (target.length) target.attr("id", id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment