Here is another way to solve the Problem.
Fist add a line to the click event to show the hash in the Addressbar
$('#myTab').on('click', 'a', function (e) {
e.preventDefault();
// add this line
window.location.hash = $(this).attr('href');
$(this).tab('show');
})
Then make sure that the right tab is activated onload by adding this part to your document ready call.
if(window.location.hash){
$('#myTab').find('a[href="'+window.location.hash+'"]').tab('show');
}
All together you can write this:
// cache the id
var navbox = $('#myTab');
// activate tab on click
navbox.find('a').click(function (e) {
// prevent the Default behavior
e.preventDefault();
// set the hash to the address bar
window.location.hash = $(this).attr('href');
// activate the clicked tab
$(this).tab('show');
})
// if we have a hash in the address bar
if(window.location.hash){
// show right tab on load (read hash from address bar)
navbox.find('a[href="'+window.location.hash+'"]').tab('show');
}