Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('#tabHistory a').click(function(e) {
- e.preventDefault();
- $(this).tab('show');
- });
- $("ul.nav-tabs#tabHistory > li > a").on("shown.bs.tab", function(e) {
- var id = $(e.target).attr("href");
- localStorage.setItem('selectedTab', id)
- });
- var selectedTab = localStorage.getItem('selectedTab');
- $('button.acctitle acctitlec a[href="' + selectedTab + '"]').tab('show');
Advertisement
Add Comment
Please, Sign In to add comment