Skip to content

Instantly share code, notes, and snippets.

@atitsbest
atitsbest / gist:e76a396cb80f9e465aa3
Created July 7, 2015 08:13
Bootstrap Tab Url Hash
// Javascript to enable link to tab
var url = document.location.toString();
if (url.match('#')) {
$('.nav-tabs a[href=#' + url.split('#')[1] + ']').tab('show');
}
// Change hash for page-reload
$('.nav-tabs a').on('shown.bs.tab', function (e) {
window.location.hash = e.target.hash;
})