Skip to content

Instantly share code, notes, and snippets.

@fercreek
Created May 21, 2018 06:06
Show Gist options
  • Save fercreek/0fb649beaf216a9552e00335641d1fae to your computer and use it in GitHub Desktop.
Save fercreek/0fb649beaf216a9552e00335641d1fae to your computer and use it in GitHub Desktop.
$(function(){
var hash = window.location.hash;
hash && $('ul.nav a[href="' + hash + '"]').tab('show');
$('.nav-tabs a').click(function (e) {
$(this).tab('show');
var scrollmem = $('body').scrollTop();
window.location.hash = this.hash;
$('html,body').scrollTop(scrollmem);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment