Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function(){
  2. // Javascript to enable link to tab
  3. var url = document.location.toString();
  4. if (url.match('#')) {
  5. $('.nav-tabs a[href="#' + url.split('#')[1] + '"]').tab('show');
  6. }
  7.  
  8. // Change hash for page-reload
  9. $('.nav-tabs a').on('shown.bs.tab', function (e) {
  10. window.location.hash = e.target.hash;
  11. })
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement