jQuery(document).ready(function($){var hash=document.location.hash;var prefix="tab_";if(hash){$('.nav-tabs a[href='+hash.replace(prefix,"")+']').tab('show');} $('.nav-tabs a').on('shown',function(e){window.location.hash=e.target.hash.replace("#","#"+prefix);});$('#click-to-show').on('click',function(){$('.click-to-show-content').toggleClass('show');});});